-
Notifications
You must be signed in to change notification settings - Fork 22
Closed
Description
Source:
body {
background: red;
}
@keyframes fade-out {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}Result:
.my-prefix {
background: red;
}
@keyframes fade-out {
.my-prefix 0% {
opacity: 1;
}
.my-prefix 100% {
opacity: 0;
}
}For some reason this utility is also prefixing the "selectors" inside the @Keyframes. Is there a way to ignore when inside this block (@Keyframes)?
Metadata
Metadata
Assignees
Labels
No labels