jetpack
Version:
Jetpack wraps webpack and nodemon to give you the best development workflow.
21 lines (16 loc) • 297 B
CSS
@import './reset.css';
body {
background-color: aliceblue;
}
.unicorn {
display: flex;
flex-direction: column;
@media (min-width: 767px) {
display: flex;
flex-direction: row;
}
}
@custom-media --wide-window (min-width: 30em);
@media (--wide-window) {
background: yellow;
}