Files
openfoodnetwork/app/webpacker/css/admin/alert.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

25 lines
335 B
SCSS

.alert {
border: 3px solid $medium-grey;
border-radius: 6px;
margin-bottom: 20px;
color: $medium-grey;
padding: 5px 10px;
h6 {
color: $medium-grey;
}
.message {
font-weight: bold;
}
&:hover {
border-color: $color-warning;
color: $color-warning;
h6 {
color: $color-warning;
}
}
}