Skip to content

Instantly share code, notes, and snippets.

@jlittlejohn
Last active November 28, 2020 21:50
Show Gist options
  • Save jlittlejohn/8834074 to your computer and use it in GitHub Desktop.
Save jlittlejohn/8834074 to your computer and use it in GitHub Desktop.
SCSS: Filter (Mixin)
@mixin filter($value) {
-webkit-filter: $value;
-moz-filter: $value;
-o-filter: $value;
filter: $value;
}
@indira-lima
Copy link

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment