aboutsummaryrefslogtreecommitdiffstats
path: root/packages/forms/src/wrapper
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-06-07 11:25:54 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-06-07 11:25:54 +0200
commit9f2ab40b7602bc3df26ebb093b484b9917768f69 (patch)
treed00f2833c695cfe5e504fcc87578fe392f396585 /packages/forms/src/wrapper
parentMerge pull request #1473 from meetfranz/fix/reset-news-on-logout (diff)
downloadferdium-app-9f2ab40b7602bc3df26ebb093b484b9917768f69.tar.gz
ferdium-app-9f2ab40b7602bc3df26ebb093b484b9917768f69.tar.zst
ferdium-app-9f2ab40b7602bc3df26ebb093b484b9917768f69.zip
Make buttons flexible in height
Diffstat (limited to 'packages/forms/src/wrapper')
-rw-r--r--packages/forms/src/wrapper/index.tsx9
-rw-r--r--packages/forms/src/wrapper/styles.ts5
2 files changed, 7 insertions, 7 deletions
diff --git a/packages/forms/src/wrapper/index.tsx b/packages/forms/src/wrapper/index.tsx
index d9c61381d..cf179bc5e 100644
--- a/packages/forms/src/wrapper/index.tsx
+++ b/packages/forms/src/wrapper/index.tsx
@@ -3,14 +3,19 @@ import React, { Component } from 'react';
3import injectStyle from 'react-jss'; 3import injectStyle from 'react-jss';
4import { IWithStyle } from '../typings/generic'; 4import { IWithStyle } from '../typings/generic';
5 5
6import styles from './styles';
7
8interface IProps extends IWithStyle { 6interface IProps extends IWithStyle {
9 children: React.ReactNode; 7 children: React.ReactNode;
10 className?: string; 8 className?: string;
11 identifier: string; 9 identifier: string;
10 noMargin?: boolean;
12} 11}
13 12
13const styles = {
14 container: {
15 marginBottom: (props: IProps) => props.noMargin ? 0 : 20,
16 },
17};
18
14class WrapperComponent extends Component<IProps> { 19class WrapperComponent extends Component<IProps> {
15 render() { 20 render() {
16 const { 21 const {
diff --git a/packages/forms/src/wrapper/styles.ts b/packages/forms/src/wrapper/styles.ts
deleted file mode 100644
index 72306b252..000000000
--- a/packages/forms/src/wrapper/styles.ts
+++ /dev/null
@@ -1,5 +0,0 @@
1export default {
2 container: {
3 marginBottom: 20,
4 },
5};