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:26:15 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-07 06:26:15 +0800
commitd941901e3281fdb2fd0f9a9b3b23947f05b1c56e (patch)
tree01ca19c520ca2bc6de7eef6efde7f98d5df7eebd /packages/instant/src/components/ui/container.tsx
parenteb3fda059a2d72ee9bfeb1bae39a3c4f6a724e99 (diff)
downloaddexon-sol-tools-d941901e3281fdb2fd0f9a9b3b23947f05b1c56e.tar
dexon-sol-tools-d941901e3281fdb2fd0f9a9b3b23947f05b1c56e.tar.gz
dexon-sol-tools-d941901e3281fdb2fd0f9a9b3b23947f05b1c56e.tar.bz2
dexon-sol-tools-d941901e3281fdb2fd0f9a9b3b23947f05b1c56e.tar.lz
dexon-sol-tools-d941901e3281fdb2fd0f9a9b3b23947f05b1c56e.tar.xz
dexon-sol-tools-d941901e3281fdb2fd0f9a9b3b23947f05b1c56e.tar.zst
dexon-sol-tools-d941901e3281fdb2fd0f9a9b3b23947f05b1c56e.zip
Hide X when small
Diffstat (limited to 'packages/instant/src/components/ui/container.tsx')
-rw-r--r--packages/instant/src/components/ui/container.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/instant/src/components/ui/container.tsx b/packages/instant/src/components/ui/container.tsx
index d276e0603..9ec875cf3 100644
--- a/packages/instant/src/components/ui/container.tsx
+++ b/packages/instant/src/components/ui/container.tsx
@@ -6,7 +6,7 @@ import { ColorOption, styled } from '../../style/theme';
import { cssRuleIfExists } from '../../style/util';
export interface ContainerProps {
- display?: string;
+ display?: MediaChoice;
position?: string;
top?: string;
right?: string;
@@ -45,7 +45,6 @@ export const Container =
`
box-sizing: border-box;
${props => cssRuleIfExists(props, 'flex-grow')}
- ${props => cssRuleIfExists(props, 'display')}
${props => cssRuleIfExists(props, 'position')}
${props => cssRuleIfExists(props, 'top')}
${props => cssRuleIfExists(props, 'right')}
@@ -68,6 +67,7 @@ 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 => stylesForMedia('display', props.display || 'initial')}
${props => stylesForMedia('width', props.width || 'auto')}
${props => stylesForMedia('height', props.height || 'auto')}
background-color: ${props => (props.backgroundColor ? props.theme[props.backgroundColor] : 'none')};