You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 6, 2020. It is now read-only.
// This one is correctly applied
div {
@apply bg-pink-200;
}
// This one is not
a {
@apply text-red-600;
}
// This one is correctly applied
a:hover {
@apply text-blue-500;
}
The issue
Every css in theme-pink.css is applied but the one with a { @apply text-red-600; }.
If move the problematic line in main.css then our style is applied: