Add header spacer file

This commit is contained in:
Jackson Harper
2023-03-06 14:35:31 +08:00
parent 1bb531fa7a
commit 9a412d366b

View File

@ -0,0 +1,18 @@
import { Box } from '../../elements/LayoutPrimitives'
export const HEADER_HEIGHT = '105px'
export const MOBILE_HEADER_HEIGHT = '70px'
export function HeaderSpacer(): JSX.Element {
return (
<Box
css={{
height: HEADER_HEIGHT,
bg: '$grayBase',
'@mdDown': {
height: MOBILE_HEADER_HEIGHT,
},
}}
></Box>
)
}