Added PRG banner color and animation to alert me that I'm on production env.

This commit is contained in:
Simon Priet 2021-11-18 11:29:48 +01:00
parent 33e54840f6
commit d90c9cda4a

17
PRD banner.css Normal file
View File

@ -0,0 +1,17 @@
@-moz-document domain("stream.alkemics.com") {
.Navbar {
animation-duration: 3s;
animation-name: slidein;
animation-iteration-count: infinite;
animation-direction: alternate;
}
@keyframes slidein {
from {
background-color: black;
}
to {
background-color: rgb(30, 180, 155);
}
}
}