aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/components/ui
diff options
context:
space:
mode:
authorSteve Klebanoff <steve.klebanoff@gmail.com>2018-10-16 05:04:53 +0800
committerSteve Klebanoff <steve.klebanoff@gmail.com>2018-10-16 05:04:53 +0800
commitf13d061dd2725bd87a6021dec2dad6f1cccb57dc (patch)
tree47ce3fcdc2ed057eadecadb32b6bf59cf9f837e8 /packages/instant/src/components/ui
parent7325e1669897cb9bbacaf28319b470e45ec0d4e7 (diff)
downloaddexon-sol-tools-f13d061dd2725bd87a6021dec2dad6f1cccb57dc.tar
dexon-sol-tools-f13d061dd2725bd87a6021dec2dad6f1cccb57dc.tar.gz
dexon-sol-tools-f13d061dd2725bd87a6021dec2dad6f1cccb57dc.tar.bz2
dexon-sol-tools-f13d061dd2725bd87a6021dec2dad6f1cccb57dc.tar.lz
dexon-sol-tools-f13d061dd2725bd87a6021dec2dad6f1cccb57dc.tar.xz
dexon-sol-tools-f13d061dd2725bd87a6021dec2dad6f1cccb57dc.tar.zst
dexon-sol-tools-f13d061dd2725bd87a6021dec2dad6f1cccb57dc.zip
move z-index setting to zero instant container, and add ability for zindex to be set on container
Diffstat (limited to 'packages/instant/src/components/ui')
-rw-r--r--packages/instant/src/components/ui/container.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/instant/src/components/ui/container.tsx b/packages/instant/src/components/ui/container.tsx
index c45f6e5e9..02b16e39f 100644
--- a/packages/instant/src/components/ui/container.tsx
+++ b/packages/instant/src/components/ui/container.tsx
@@ -26,6 +26,7 @@ export interface ContainerProps {
className?: string;
backgroundColor?: ColorOption;
hasBoxShadow?: boolean;
+ zIndex?: number;
}
const PlainContainer: React.StatelessComponent<ContainerProps> = ({ children, className }) => (
@@ -52,6 +53,7 @@ export const Container = styled(PlainContainer)`
${props => cssRuleIfExists(props, 'border')}
${props => cssRuleIfExists(props, 'border-top')}
${props => cssRuleIfExists(props, 'border-bottom')}
+ ${props => cssRuleIfExists(props, 'z-index')}
${props => (props.hasBoxShadow ? `box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1)` : '')};
background-color: ${props => (props.backgroundColor ? props.theme[props.backgroundColor] : 'none')};
border-color: ${props => (props.borderColor ? props.theme[props.borderColor] : 'none')};