Created
September 17, 2018 09:34
-
-
Save mixxorz/e47c6a4f8d4245d5b22057e22ca73795 to your computer and use it in GitHub Desktop.
Debug vertical rhythm with Sass
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 vertical-grid($line-height: 24px) { | |
position: relative; | |
&::before { | |
$stripe-color: rgba(blue, 0.2); | |
background-image: repeating-linear-gradient(to bottom, $stripe-color, $stripe-color $line-height, transparent $line-height, transparent $line-height * 2); | |
bottom: 0; | |
content: ''; | |
left: 0; | |
position: absolute; | |
right: 0; | |
top: 0; | |
z-index: 9999; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment