25 lines
501 B
SCSS
25 lines
501 B
SCSS
.alert {
|
|
padding: 16px;
|
|
margin: 24px 0px;
|
|
font-size: 14px;
|
|
color: $darkgray;
|
|
&.is-critical {
|
|
border-left: 10px solid $brightred;
|
|
background-color: rgba($brightred, 0.05);
|
|
}
|
|
|
|
&.is-important {
|
|
border-left: 10px solid $orange;
|
|
background-color: rgba($orange, 0.05);
|
|
}
|
|
|
|
&.is-helpful {
|
|
border-left: 10px solid $blue;
|
|
background-color: rgba($blue, 0.05);
|
|
}
|
|
|
|
p {
|
|
margin: 0;
|
|
padding: 8px 16px;
|
|
}
|
|
} |