Skip to content

Instantly share code, notes, and snippets.

@joellesenne
Created September 15, 2020 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joellesenne/dee3b1f06b1eb56bb373231bd081a2b3 to your computer and use it in GitHub Desktop.
Save joellesenne/dee3b1f06b1eb56bb373231bd081a2b3 to your computer and use it in GitHub Desktop.
CSS Filter SASS MIxin
// CSS Filter SASS MIxin
@mixin filter($value) {
-webkit-filter: $value;
-moz-filter: $value;
-o-filter: $value;
filter: $value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment