Skip to content

Instantly share code, notes, and snippets.

@ryanve
Last active November 23, 2016 19:04
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 ryanve/63091b1e1c2bd80e5a211f737c191cd3 to your computer and use it in GitHub Desktop.
Save ryanve/63091b1e1c2bd80e5a211f737c191cd3 to your computer and use it in GitHub Desktop.
Sass backdrop mixin
@mixin backdrop($background: rgba(black, .5)) {
@include mask(fixed);
z-index: -1;
background: #{$background};
}
@ryanve
Copy link
Author

ryanve commented Nov 23, 2016

uses: mask.scss

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