Open KeithClinard opened 2 months ago
Given CSS in the form of:
[data-theme="themename"] { --variable: value; .btn{ --btn-variable: value; } }
CSS minification produces the following structure:
[data-theme="themename"] { --variable: value; } .btn{ --btn-variable: value; }
This effectively breaks theming by "unwrapping" nested styles from the main data-theme attribute.
data-theme
A temporary fix has been put in place by removing CSS minification. PR #74
Given CSS in the form of:
CSS minification produces the following structure:
This effectively breaks theming by "unwrapping" nested styles from the main
data-theme
attribute.