Update app.css
This commit is contained in:
parent
91bd919e3d
commit
c3d7cde4cf
|
|
@ -10,9 +10,24 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes alertanim {
|
||||||
|
0% {
|
||||||
|
top: 0px;
|
||||||
|
animation-timing-function: linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
background-position-x: 72px;
|
||||||
|
animation-timing-function: linear;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#alert, #success {
|
#alert, #success {
|
||||||
height: fit-content;
|
height: fit-content;
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
|
animation: alertanim;
|
||||||
|
animation-duration: 250ms;
|
||||||
|
animation-iteration-count: 1;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 72px;
|
top: 72px;
|
||||||
padding-top: 2px;
|
padding-top: 2px;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue