mirror of
https://github.com/status-im/consul.git
synced 2025-01-09 05:23:04 +00:00
5ab7e48862
This commit/PR beings to move away from using CSS preprocessing for our icons and towards using native CSS via native CSS property composition
10 lines
196 B
SCSS
10 lines
196 B
SCSS
%progress-native {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
}
|
|
%progress-native::-webkit-progress-bar,
|
|
%progress-native::-webkit-progress-value {
|
|
display: none;
|
|
}
|