aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfragosti <francesco.agosti93@gmail.com>2018-10-05 09:06:19 +0800
committerfragosti <francesco.agosti93@gmail.com>2018-10-05 09:06:19 +0800
commitbf0437324d3499dbb516e85a4eb1fbdceb91707c (patch)
treecbd9802f4651596bfaded2e3b64fc240ae035a63
parent1001dfcc30d9e7a049cc0d7719131adec6344f6c (diff)
downloaddexon-sol-tools-bf0437324d3499dbb516e85a4eb1fbdceb91707c.tar
dexon-sol-tools-bf0437324d3499dbb516e85a4eb1fbdceb91707c.tar.gz
dexon-sol-tools-bf0437324d3499dbb516e85a4eb1fbdceb91707c.tar.bz2
dexon-sol-tools-bf0437324d3499dbb516e85a4eb1fbdceb91707c.tar.lz
dexon-sol-tools-bf0437324d3499dbb516e85a4eb1fbdceb91707c.tar.xz
dexon-sol-tools-bf0437324d3499dbb516e85a4eb1fbdceb91707c.tar.zst
dexon-sol-tools-bf0437324d3499dbb516e85a4eb1fbdceb91707c.zip
Add border radios
-rw-r--r--packages/instant/src/components/instant_heading.tsx2
-rw-r--r--packages/instant/src/components/zero_ex_instant_container.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/instant/src/components/instant_heading.tsx b/packages/instant/src/components/instant_heading.tsx
index 5aa82bcda..52c4bb2db 100644
--- a/packages/instant/src/components/instant_heading.tsx
+++ b/packages/instant/src/components/instant_heading.tsx
@@ -7,7 +7,7 @@ import { Container, Flex, Text } from './ui';
export interface InstantHeadingProps {}
export const InstantHeading: React.StatelessComponent<InstantHeadingProps> = props => (
- <Container backgroundColor={ColorOption.primaryColor} padding="20px" width="100%">
+ <Container backgroundColor={ColorOption.primaryColor} padding="20px" width="100%" borderRadius="3px 3px 0px 0px">
<Container marginBottom="5px">
<Text
letterSpacing="1px"
diff --git a/packages/instant/src/components/zero_ex_instant_container.tsx b/packages/instant/src/components/zero_ex_instant_container.tsx
index d33b4bfd5..6075a5b21 100644
--- a/packages/instant/src/components/zero_ex_instant_container.tsx
+++ b/packages/instant/src/components/zero_ex_instant_container.tsx
@@ -10,7 +10,7 @@ import { Container, Flex, Text } from './ui';
export interface ZeroExInstantContainerProps {}
export const ZeroExInstantContainer: React.StatelessComponent<ZeroExInstantContainerProps> = props => (
- <Container hasBoxShadow={true} width="350px" backgroundColor={ColorOption.white}>
+ <Container hasBoxShadow={true} width="350px" backgroundColor={ColorOption.white} borderRadius="3px">
<Flex direction="column" justify="flex-start">
<InstantHeading />
<OrderDetails />