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
13 lines
276 B
SCSS
13 lines
276 B
SCSS
%progress-indeterminate {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
--icon-size: icon-700; /* 24px */
|
|
--icon-name: var(--icon-loading);
|
|
--icon-color: rgb(var(--tone-gray-500));
|
|
}
|
|
%progress-indeterminate::before {
|
|
content: '';
|
|
}
|