meter default styles

This commit is contained in:
Andrew Croce 2018-08-20 16:45:01 -04:00
parent 9ba8fee233
commit 3a1e626b8d

View File

@ -0,0 +1,19 @@
meter {
-moz-appearance: none;
appearance: none;
display: block;
background: $color-gray-lightest;
&::-webkit-meter-bar {
background: $color-gray-lightest;
}
&::-webkit-meter-optimum-value,
&::-webkit-meter-suboptimum-value,
&::-webkit-meter-even-less-good-value {
background: $color-primary;
}
&::-moz-meter-bar {
background: $color-primary;
}
}