diff options
author | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-10 18:21:40 +0800 |
---|---|---|
committer | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-12-10 18:22:00 +0800 |
commit | 16f69ad718173266bd31b26b49f573cc175aed38 (patch) | |
tree | 5b9a2e74b9a0045b059b4e580104c2ed08c4997c /packages/website/ts/@next/components/layout.tsx | |
parent | 03ca8256398f2b178381c43aa0f3d648b4dba752 (diff) | |
download | dexon-sol-tools-16f69ad718173266bd31b26b49f573cc175aed38.tar.gz dexon-sol-tools-16f69ad718173266bd31b26b49f573cc175aed38.tar.zst dexon-sol-tools-16f69ad718173266bd31b26b49f573cc175aed38.zip |
Refactors <Icon>
Diffstat (limited to 'packages/website/ts/@next/components/layout.tsx')
-rw-r--r-- | packages/website/ts/@next/components/layout.tsx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/packages/website/ts/@next/components/layout.tsx b/packages/website/ts/@next/components/layout.tsx index 1fa145368..48b8ec074 100644 --- a/packages/website/ts/@next/components/layout.tsx +++ b/packages/website/ts/@next/components/layout.tsx @@ -33,7 +33,6 @@ interface ColumnProps { isNoPadding?: boolean; isPadLarge?: boolean; bgColor?: string; - borderColor?: string; } interface GetColWidthArgs { @@ -67,7 +66,6 @@ const COLUMN_WIDTHS: ColumnWidths = { }; export const Main = styled.main` - border: 1px dotted rgba(0, 0, 255, 0.3); width: calc(100% - 0); max-width: ${MAX_WIDTH}px; margin: 0 auto; @@ -87,7 +85,6 @@ export const Section = styled.section<SectionProps>` margin-bottom: ${props => !props.isNoMargin && `${GUTTER}px`}; margin-left: ${props => props.isFullWidth && `-${GUTTER}px`}; background-color: ${props => props.bgColor}; - border: 1px dotted rgba(0, 255, 0, 0.15); @media (min-width: 1560px) { width: ${props => props.isFullWidth && '100vw'}; @@ -133,9 +130,7 @@ export const WrapGrid = styled(WrapBase)` export const Column = styled.div<ColumnProps>` padding: ${props => !props.isNoPadding && (props.isPadLarge ? '60px 30px' : '30px')}; - border: 1px dotted rgba(255, 0, 0, 0.15); background-color: ${props => props.bgColor}; - border-color: ${props => props.borderColor && `${props.borderColor}`}; @media (min-width: ${BREAKPOINTS.mobile}) { width: ${props => props.colWidth ? COLUMN_WIDTHS[props.colWidth] : '100%'}; |