mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-07 04:31:21 -06:00
483 B
483 B
custom-property-no-outside-root
Deprecated: See CHANGELOG.
Disallow custom properties outside of :root
rules.
a { --foo: 1px; }
/** ↑ ↑
* These selectors and these types of custom properties */
Options
true
The following patterns are considered warnings:
a { --foo: 1px; }
:root, a { --foo: 1px; }
The following patterns are not considered warnings:
:root { --foo: 1px; }