blob: 8df9486acc18bbffde40270ce10ea0d8da693298 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
.alert-banner {
padding: 1rem 1rem 0.75rem;
border-left-width: 3px;
border-left-style: solid;
display: flex;
.status-icon {
margin-right: 1rem;
display: flex;
flex-direction: column;
justify-content: center;
width: 1.2rem;
}
}
.alert-banner--error {
background-color: $notification-error--light;
border-left-color: $notification-error--dark;
}
.alert-banner--success {
background-color: $notification-success--light;
border-left-color: $notification-success--dark;
}
.alert-banner--warn {
background-color: $notification-warn--light;
border-left-color: $notification-warn--dark;
}
.alert-banner--info {
background-color: $notification-info--light;
border-left-color: $notification-info--dark;
}
|