Has anyone tried using the @screen directive? Doesn't seem to reflect in the compiled CSS. Here is what I'm trying to do:
.main-nav .nav-item {
@apply .inline-block .uppercase .font-bold .mr-4 .pb-3 .border-b-4 .border-transparent;
@screen sm {
@apply .block;
}
}
The first @apply rules work but the @screen directive does not reflect.
Thanks!
Has anyone tried using the
@screendirective? Doesn't seem to reflect in the compiled CSS. Here is what I'm trying to do:The first
@applyrules work but the @screen directive does not reflect.Thanks!