diff options
author | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-11-29 21:58:30 +0800 |
---|---|---|
committer | Ezekiel Aquino <ezekiel@bakkenbaeck.no> | 2018-11-29 21:58:30 +0800 |
commit | e10d34cdfc91a14878987c61e4365baa1612318a (patch) | |
tree | e3b585c09787ece4cf0382dd7a5f0b1757ad3190 /packages/website/ts/@next/components | |
parent | 96b9ffc847c9c8b4ab342fe175865bc3d05d7c8e (diff) | |
download | dexon-sol-tools-e10d34cdfc91a14878987c61e4365baa1612318a.tar dexon-sol-tools-e10d34cdfc91a14878987c61e4365baa1612318a.tar.gz dexon-sol-tools-e10d34cdfc91a14878987c61e4365baa1612318a.tar.bz2 dexon-sol-tools-e10d34cdfc91a14878987c61e4365baa1612318a.tar.lz dexon-sol-tools-e10d34cdfc91a14878987c61e4365baa1612318a.tar.xz dexon-sol-tools-e10d34cdfc91a14878987c61e4365baa1612318a.tar.zst dexon-sol-tools-e10d34cdfc91a14878987c61e4365baa1612318a.zip |
Enables fullwidth sections. As in edge-to-edge
Diffstat (limited to 'packages/website/ts/@next/components')
-rw-r--r-- | packages/website/ts/@next/components/layout.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/website/ts/@next/components/layout.tsx b/packages/website/ts/@next/components/layout.tsx index 6f6e6cd6b..65c98997d 100644 --- a/packages/website/ts/@next/components/layout.tsx +++ b/packages/website/ts/@next/components/layout.tsx @@ -70,10 +70,10 @@ export const Main = styled.main` `; export const Section = styled.section<SectionProps>` - width: ${props => props.fullWidth ? `calc(100% + ${GUTTER * 2}px)` : '100%'}; + width: ${props => props.fullWidth ? `calc(100% + ${GUTTER * 2}px)` : '100vw'}; padding: ${props => !props.noPadding && '30px'}; margin-bottom: ${props => !props.noMargin && `${GUTTER}px`}; - margin-left: ${props => props.fullWidth && `-${GUTTER}px`}; + margin-left: ${props => props.fullWidth && `calc(750px - 50vw)`}; background-color: ${props => props.bgColor}; border: 1px dotted rgba(0, 255, 0, 0.3); `; |