Files
openfoodnetwork/app/webpacker/css/admin/components/table_loading.scss
David Cook c4a335548a Rename warning color variable
To match the others in the variables file.

Also `warning-orange` was unused.
2023-08-03 09:49:29 +10:00

26 lines
303 B
SCSS

.row-loading {
opacity: 0.5;
}
.row-loading-icons {
margin-left: 2.5em;
position: absolute;
i {
font-size: 2.3em;
opacity: 0.75;
&::before {
vertical-align: top;
}
&.success {
color: $spree-green;
}
&.error {
color: $color-warning;
}
}
}