Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save EvgenyArtemov/1b454e5a0df1236578de75906d31b20a to your computer and use it in GitHub Desktop.
Save EvgenyArtemov/1b454e5a0df1236578de75906d31b20a to your computer and use it in GitHub Desktop.
SASS target only Firefox
@mixin firefox-only {
@at-root {
@-moz-document url-prefix() {
& {
@content;
}
}
}
}
tag {
prop: value;
&[attr1=value1],
&[attr2=value2] {
@include firefox-only {
prop: value;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment