mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
39 lines
471 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|