mirror of
https://github.com/Ravinou/borgwarehouse
synced 2026-03-14 14:25:46 +01:00
18 lines
248 B
CSS
18 lines
248 B
CSS
.errorMessage {
|
|
margin: 15px 0px;
|
|
background-color: red;
|
|
color: white;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
animation: myAnim 1s ease 0s 1 normal forwards;
|
|
}
|
|
|
|
@keyframes myAnim {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|