File size: 771 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 |
import { createVar, globalStyle, style } from '@vanilla-extract/css'
export const widthVar = createVar()
export const heightVar = createVar()
export const container = style({
position: 'relative',
'@supports': {
'(aspect-ratio: 1)': {
overflow: 'hidden',
aspectRatio: `${widthVar} / ${heightVar}`,
},
'not (aspect-ratio: 1)': {
':before': {
paddingTop: `calc((${widthVar} / ${heightVar}) * 100%)`,
display: 'block',
content: '',
width: '100%',
},
},
},
})
globalStyle(`${container} > *`, {
position: 'absolute',
top: '50%',
left: '50%',
transform: 'translate(-50%, -50%)',
minWidth: '100%',
maxWidth: '100%',
minHeight: '100%',
maxHeight: '100%',
objectFit: 'cover',
})
|