-
Notifications
You must be signed in to change notification settings - Fork 243
Closed
Description
I am trying to create the following transform:
/* Input */
@breakpoints {
.mt-1 { margin-top: 1px };
}
/* Output */
@media all {
.mt-1 { margin-top: 1px };
}
@media (max-width: 600px) {
.sm\:mt-1 { margin-top: 1px };
}
@media (max-width: 800px) {
.md\:mt-1 { margin-top: 1px };
}How can I parse unknown at-rules' block property as a style declaration?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels