Newer
Older
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
.messages {
position: relative;
right: 50%;
left: 50%;
width: 100vw;
margin-right: -50vw;
margin-left: -50vw;
&__text {
position: relative;
max-height: 1000px;
padding: 15px;
padding-right: 35px;
border: solid 1px;
&--info , &--success {
background: $color--mint;
border-color: darken($color--mint, 20%);
}
&--warning {
font-weight: bold;
color: $color--white;
background: $color--error;
border-color: darken($color--error, 20%);
}
&--hide {
max-height: 0;
padding-top: 0;
padding-bottom: 0;
border: 0 none;
transition: all $transition; // sass-lint:disable-line no-transition-all
transform-origin: top;
}
}
&__close {
position: absolute;
top: 15px;
right: 15px;
}
}