Add experimental support for CSS media queries
kristerkari opened this issue · 1 comments
kristerkari commented
.container {
background-color: #f00;
}
@media (orientation: landscape) {
.container {
background-color: #00f;
}
}
↓ ↓ ↓ ↓ ↓ ↓
{
container: {
backgroundColor: "#f00",
},
"@media (orientation: landscape)": {
container: {
backgroundColor: "#00f",
},
},
}
kristerkari commented