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
| .notice {
| display: flex;
| flex-direction: column;
|
| @include themed() {
| background-color: t('notice-info');
| }
|
| &--update {
|
| @include themed() {
| background-color: t('notice-update');
| }
| }
| &--warning {
|
| @include themed() {
| background-color: t('notice-warning');
| }
| }
|
| &__title {
| background-color: rgb(96, 134, 180);
| align-self: flex-end;
| font-weight: 300;
| letter-spacing: 0.025em;
| padding: 0.2rem 0.2rem 0.2rem 0.2rem;
|
| @include themed() {
| color: t('accent');
| }
|
| &--update {
| background-color: rgb(81, 216, 138);
| }
| &--warning {
| background-color: rgb(239, 87, 83);
| }
| }
|
| &__content {
| padding: 8px 8px 1rem 1rem;
| }
| }
|
|