Files
openfoodnetwork/app/webpacker/css/admin/components/dialogs.scss
David Cook e11518938f Prettify admin components scss
Largely whitespace, but some other updates too, including uppercase colour codes and standardising numbers.

Best viewed with whitespace ignored.
2023-05-03 12:10:58 +10:00

39 lines
469 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: $warning-red;
}
}
}
&.info {
.message {
.icon {
color: $spree-blue;
}
}
}
}