UNPKG

stylelint

Version:
26 lines (18 loc) 416 B
# custom-property-no-outside-root Disallow custom properties outside of `:root` rules. ```css a { --foo-bar: 1px; } /** ↑ ↑ * These selectors and these types of custom properties */ ``` The following patterns are considered warnings: ```css a { --foo-bar: 1px; } ``` ```css :root, a { --foo-bar: 1px; } ``` The following patterns are *not* considered warnings: ```css :root { --foo-bar: 1px; } ```