aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/ui/container.tsx
diff options
context:
space:
mode:
authorSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-07 06:05:49 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-07 06:05:49 +0800
commit006a13448fc5d79aa8f6d04ac3f471e430dcfa89 (patch)
tree8a8e3bbe73704b81529fa3ff550f3a227030d7c5 /packages/instant/src/components/ui/container.tsx
parent88c7d907fa97f7918b82df8c1759b43c28c7273b (diff)
downloaddexon-sol-tools-006a13448fc5d79aa8f6d04ac3f471e430dcfa89.tar
dexon-sol-tools-006a13448fc5d79aa8f6d04ac3f471e430dcfa89.tar.gz
dexon-sol-tools-006a13448fc5d79aa8f6d04ac3f471e430dcfa89.tar.bz2
dexon-sol-tools-006a13448fc5d79aa8f6d04ac3f471e430dcfa89.tar.lz
dexon-sol-tools-006a13448fc5d79aa8f6d04ac3f471e430dcfa89.tar.xz
dexon-sol-tools-006a13448fc5d79aa8f6d04ac3f471e430dcfa89.tar.zst
dexon-sol-tools-006a13448fc5d79aa8f6d04ac3f471e430dcfa89.zip
new MediaChoice approach for setting conditional css properties
Diffstat (limited to 'packages/instant/src/components/ui/container.tsx')
-rw-r--r--packages/instant/src/components/ui/container.tsx23
1 files changed, 5 insertions, 18 deletions
diff --git a/packages/instant/src/components/ui/container.tsx b/packages/instant/src/components/ui/container.tsx
index 36d7cf2ec..0e518be88 100644
--- a/packages/instant/src/components/ui/container.tsx
+++ b/packages/instant/src/components/ui/container.tsx
@@ -1,7 +1,7 @@
import * as _ from 'lodash';
import { darken } from 'polished';
-import { media } from '../../style/media';
+import { MediaChoice, stylesForMedia } from '../../style/media';
import { ColorOption, styled } from '../../style/theme';
import { cssRuleIfExists } from '../../style/util';
@@ -12,8 +12,8 @@ export interface ContainerProps {
right?: string;
bottom?: string;
left?: string;
- width?: string;
- height?: string;
+ width?: MediaChoice;
+ height?: MediaChoice;
maxWidth?: string;
margin?: string;
marginTop?: string;
@@ -36,22 +36,8 @@ export interface ContainerProps {
overflow?: string;
darkenOnHover?: boolean;
flexGrow?: string | number;
-
- smallWidth?: string;
- smallHeight?: string;
}
-const mediaStyles = (props: ContainerProps) => {
- if (!_.some([props.smallWidth, props.smallHeight])) {
- return '';
- }
-
- return media.small`
- width: ${props.smallWidth || props.width || 'auto'}
- height: ${props.smallHeight || props.height || 'auto'}
- `;
-};
-
// TODO Dont commit flex grow
export const Container =
styled.div <
@@ -84,7 +70,8 @@ export const Container =
${props => cssRuleIfExists(props, 'cursor')}
${props => cssRuleIfExists(props, 'overflow')}
${props => (props.hasBoxShadow ? `box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1)` : '')};
- ${props => mediaStyles(props)}
+ ${props => stylesForMedia('width', props.width || 'auto')}
+ ${props => stylesForMedia('height', props.height || 'auto')}
background-color: ${props => (props.backgroundColor ? props.theme[props.backgroundColor] : 'none')};
border-color: ${props => (props.borderColor ? props.theme[props.borderColor] : 'none')};
&:hover {