File size: 871 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
import { style } from '@vanilla-extract/css'
import { vars } from '../theme-contract.css'
import { BREAKPOINTS } from '../breakpoints.css'
export const mainHeader = style({
paddingBottom: vars.space['15'],
'@media': {
[`screen and ${BREAKPOINTS.tabletUp}`]: {
paddingBottom: vars.space['25'],
},
},
})
export const externalLinkGrid = style({
margin: `0 ${vars.space['25']}`,
'@media': {
[`screen and ${BREAKPOINTS.tabletUp}`]: {
margin: `0 ${vars.space['50']}`,
},
},
})
export const main = style({
width: '100%',
overflowX: 'hidden',
})
export const maxWrapper = style({
maxWidth: vars.sizes.largeDoc,
margin: '0 auto',
})
export const homeBlocks = style({
margin: `${vars.space['40']} 0`,
[`screen and ${BREAKPOINTS.tabletUp}`]: {
marginTop: vars.space['100'],
marginBottom: vars.space['80'],
},
})
|