Media & Supports
module.exports = {
media: {
'(min-width: 640px)': {
scale: {
0: '1.125rem'
}
}
},
supports: {
'(display: grid)': {
grid: {
content: 'var(--grid-12)'
}
}
}
}:root {
...Pollen modules
}
@media (min-width: 640px) {
:root {
--scale-0: 1.125rem;
}
}
@supports (display: grid) {
:root {
--grid-content: var(--grid-12)
}
}Last updated