aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/ui/container.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/container.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/container.tsx')
-rw-r--r--packages/instant/src/components/ui/container.tsx17
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/instant/src/components/ui/container.tsx b/packages/instant/src/components/ui/container.tsx
index 228085f51..36d7cf2ec 100644
--- a/packages/instant/src/components/ui/container.tsx
+++ b/packages/instant/src/components/ui/container.tsx
@@ -1,5 +1,7 @@
+import * as _ from 'lodash';
import { darken } from 'polished';
+import { media } from '../../style/media';
import { ColorOption, styled } from '../../style/theme';
import { cssRuleIfExists } from '../../style/util';
@@ -34,8 +36,22 @@ 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 <
@@ -68,6 +84,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 => mediaStyles(props)}
background-color: ${props => (props.backgroundColor ? props.theme[props.backgroundColor] : 'none')};
border-color: ${props => (props.borderColor ? props.theme[props.borderColor] : 'none')};
&:hover {