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

39 lines
471 B
SCSS

#info-dialog,
#confirm-dialog {
.message {
.text,
.icon {
position: relative;
float: left;
display: inline;
}
.text {
padding-top: 10px;
width: 80%;
font-size: 1rem;
}
.icon {
width: 20%;
font-size: 4rem;
}
}
&.error {
.message {
.icon {
color: $color-warning;
}
}
}
&.info {
.message {
.icon {
color: $spree-blue;
}
}
}
}