mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
Largely whitespace, but some other updates too, including uppercase colour codes and standardising numbers. Best viewed with whitespace ignored.
39 lines
469 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|