File size: 398 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import { style } from '@vanilla-extract/css'
import { vars } from '../../styles/theme-contract.css'
export const navList = style({
listStyle: 'none',
margin: 0,
padding: 0,
display: 'flex',
alignItems: 'center',
gap: vars.space['10'],
})
export const navSeperator = style({
width: '0.1rem',
background: vars.colors.steel40,
margin: `0 ${vars.space['15']}`,
height: '2rem',
})
|