Created
November 30, 2017 09:01
-
-
Save yowainwright/a1689ee30d9f17b8602b7de3e2a96c35 to your computer and use it in GitHub Desktop.
Useful Progress Bar SCSS Mixin
This file contains hidden or 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 progress-bar-color($valueColor: $color-brand-contrast, $backgroundColor: transparent) { | |
background-color: $backgroundColor; | |
color: $valueColor; | |
&::-moz-progress-bar { | |
background-color: $valueColor; | |
} | |
&::-webkit-progress-bar { | |
background-color: $backgroundColor; | |
} | |
&::-webkit-progress-value { | |
background-color: $valueColor; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment