-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Closed
Description
I am currently on 1.0.0-beta.2
.
This code:
html {
@apply bg-gray-200 antialiased;
@screen lg {
@apply bg-gray-900;
}
@screen md {
@apply text-white;
}
}
is generating this:
html {
background-color: #edf2f7;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@media (min-width: 1024px) {
background-color: #1a202c;
}
@media (min-width: 768px) {
color: #fff;
}
}
which is incorrect syntax. Am I using @screen wrong or is this a bug?
Metadata
Metadata
Assignees
Labels
No labels