mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2026-02-06 07:21:08 -08:00
13 lines
344 B
SCSS
13 lines
344 B
SCSS
@use "each";
|
|
|
|
@mixin Option($optionNames...) {
|
|
@include each.AtEach("supports", $optionNames, "-moz-bool-pref", ("separator": " or ", "quoted": true)) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
@mixin NotOption($optionNames...) {
|
|
@include each.AtEach("supports", $optionNames, "not -moz-bool-pref", ("separator": " or ", "quoted": true)) {
|
|
@content;
|
|
}
|
|
}
|