Skip to content

Instantly share code, notes, and snippets.

@ryanve
Created November 23, 2016 19:02
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/541ea7786e25ef5c14006303e807cade to your computer and use it in GitHub Desktop.
Save ryanve/541ea7786e25ef5c14006303e807cade to your computer and use it in GitHub Desktop.
Sass mask mixin
@mixin mask($position) {
position: $position;
top: 0;
left: 0;
right: 0;
bottom: 0;
content: '';
}
@ryanve
Copy link
Author

ryanve commented Nov 23, 2016

related: backdrop.scss

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