aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/ui/flex.tsx
diff options
context:
space:
mode:
authorSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-07 02:26:39 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2018-11-07 02:26:39 +0800
commita2bc62b17a773625220817c79265c017cb61979f (patch)
tree3c91f602b0d9e11c887920f498093490ced4903f /packages/instant/src/components/ui/flex.tsx
parentf6487122d1ed3dea731adcb6a08165b44c887282 (diff)
downloaddexon-sol-tools-a2bc62b17a773625220817c79265c017cb61979f.tar
dexon-sol-tools-a2bc62b17a773625220817c79265c017cb61979f.tar.gz
dexon-sol-tools-a2bc62b17a773625220817c79265c017cb61979f.tar.bz2
dexon-sol-tools-a2bc62b17a773625220817c79265c017cb61979f.tar.lz
dexon-sol-tools-a2bc62b17a773625220817c79265c017cb61979f.tar.xz
dexon-sol-tools-a2bc62b17a773625220817c79265c017cb61979f.tar.zst
dexon-sol-tools-a2bc62b17a773625220817c79265c017cb61979f.zip
feat(instant): when on mobile, show mobile specific styling that takes up whole screen
Diffstat (limited to 'packages/instant/src/components/ui/flex.tsx')
-rw-r--r--packages/instant/src/components/ui/flex.tsx18
1 files changed, 18 insertions, 0 deletions
diff --git a/packages/instant/src/components/ui/flex.tsx b/packages/instant/src/components/ui/flex.tsx
index 57abd8b5b..f85d45e36 100644
--- a/packages/instant/src/components/ui/flex.tsx
+++ b/packages/instant/src/components/ui/flex.tsx
@@ -1,3 +1,6 @@
+import * as _ from 'lodash';
+
+import { media } from '../../style/media';
import { ColorOption, styled } from '../../style/theme';
import { cssRuleIfExists } from '../../style/util';
@@ -11,8 +14,22 @@ export interface FlexProps {
backgroundColor?: ColorOption;
inline?: boolean;
flexGrow?: number | string;
+
+ smallWidth?: string;
+ smallHeight?: string;
}
+const mediaStyles = (props: FlexProps) => {
+ if (!_.some([props.smallWidth, props.smallHeight])) {
+ return '';
+ }
+
+ return media.small`
+ width: ${props.smallWidth || props.width || 'auto'}
+ height: ${props.smallHeight || props.height || 'auto'}
+ `;
+};
+
export const Flex =
styled.div <
FlexProps >
@@ -26,6 +43,7 @@ export const Flex =
${props => cssRuleIfExists(props, 'width')}
${props => cssRuleIfExists(props, 'height')}
background-color: ${props => (props.backgroundColor ? props.theme[props.backgroundColor] : 'none')};
+ ${props => mediaStyles(props)}
`;
Flex.defaultProps = {