Created
January 16, 2017 19:52
-
-
Save mikedijkstra/4853efd1540742ee52f5c29a3b7b5fe3 to your computer and use it in GitHub Desktop.
Background Mask Mixin
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin background-mask($background-color) { | |
position: relative; | |
&:before { | |
@include animated; | |
background-color: $background-color; | |
bottom: 0; | |
content: ""; | |
left: 0; | |
right: 0; | |
position: absolute; | |
pointer-events: none; | |
top: 0; | |
z-index: 0; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment