mirror of
https://github.com/nasa/openmct.git
synced 2024-12-23 15:02:23 +00:00
12 lines
212 B
SCSS
12 lines
212 B
SCSS
|
/* Styles for messages */
|
||
|
|
||
|
.message {
|
||
|
&.block {
|
||
|
@include border-radius($basicCr);
|
||
|
padding: $interiorMarginLg;
|
||
|
}
|
||
|
&.error {
|
||
|
background-color: rgba($colorAlert,0.3);
|
||
|
color: lighten($colorAlert, 20%);
|
||
|
}
|
||
|
}
|