Add box shadow and default box-sizing: border-box to container

This commit is contained in:
fragosti
2018-10-04 18:02:42 -07:00
parent 98f8c77494
commit 1001dfcc30
5 changed files with 11 additions and 9 deletions

View File

@@ -10,9 +10,11 @@ import { Container, Flex, Text } from './ui';
export interface ZeroExInstantContainerProps {}
export const ZeroExInstantContainer: React.StatelessComponent<ZeroExInstantContainerProps> = props => (
<Flex direction="column" width="350px" justify="flex-start">
<InstantHeading />
<OrderDetails />
<BuyButton />
</Flex>
<Container hasBoxShadow={true} width="350px" backgroundColor={ColorOption.white}>
<Flex direction="column" justify="flex-start">
<InstantHeading />
<OrderDetails />
<BuyButton />
</Flex>
</Container>
);