blob: b0935cee9b04381b811eba8981bfce7de296117e (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
@use "./variables" as *;
div[role="alert"] {
display: flex;
align-items: center;
justify-content: flex-start;
gap: 0.75rem;
padding: 1rem;
margin-block: 1.5rem;
margin-inline: 0.5rem;
border-radius: 0.5rem;
svg {
width: 1.5em;
height: 1.5em;
margin-inline-end: 0.5rem;
color: inherit;
vertical-align: middle;
flex-shrink: 0;
}
p {
margin-block: 0;
}
&::before {
flex-shrink: 0;
display: block;
width: 24px;
height: 24px;
line-height: 24px;
border-radius: 50%;
font-size: 1rem;
text-align: center;
}
}
div[role="alert"].note {
background-color: $noteBackground;
color: $noteText;
box-shadow: 0 0 0 1px $noteText;
&::before {
content: "i";
background-color: $noteText;
color: $light;
}
}
div[role="alert"].warning {
background-color: $warningBackground;
color: $warningText;
box-shadow: 0 0 0 1px $warningText;
&::before {
content: "!";
background-color: $warningText;
color: $light;
}
}
|