Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
556 Bytes
import { recipe } from '@vanilla-extract/recipes'
import { BREAKPOINTS } from '../../styles/breakpoints.css'
import { vars } from '../../styles/theme-contract.css'
export const aside = recipe({
base: {
display: 'none',
flexShrink: 1,
width: '30rem',
gridArea: 'aside',
'@media': {
[`screen and ${BREAKPOINTS.tabletUp}`]: {
display: 'block',
paddingTop: vars.space['25'],
height: '100%',
},
},
},
variants: {
isStuck: {
true: {
position: 'fixed',
},
},
},
})