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 has been archived by the owner on Aug 22, 2023. It is now read-only.
All :root {} rule sets with variable definitions are generally removed from the output. But not so if they contain comments. Aiming for a clean CSS file, I'd like to have an option to have these sets (and the comments) removed, too.
:root {
/* Font stacks */--font-family-sans:"Proxima Nova", sans-serif;
--font-family-serif: serif;
--font-family-mono: monospace;
/* More font variables */--font-var: normal;
}
:root {
--var: normal;
}
:root {
/* Font stacks *//* More font variables */
}
The text was updated successfully, but these errors were encountered:
All
:root {}
rule sets with variable definitions are generally removed from the output. But not so if they contain comments. Aiming for a clean CSS file, I'd like to have an option to have these sets (and the comments) removed, too.The text was updated successfully, but these errors were encountered: