messages.scss
597 Bytes
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
@keyframes flashAnimation {
0% {
transform: translateY(-70px);
}
5% {
transform: translateY(0px);
}
95% {
transform: translateY(0px);
}
100% {
transform: translateY(-70px);
}
}
.flash-message__container {
position: fixed;
top: 0;
left: 0;
width: 100%;
padding: 20px;
text-align: center;
animation: flashAnimation 5s ease-in-out forwards;
&.error {
background-color: #e74c3c;
}
&.success {
background-color: #2ecc71;
}
&.info {
background-color: #f1c40f;
}
.flash-message__text {
color: white;
font-size: 14px;
}
}