Change Warning Container with Yellow color

Signed-off-by: Gregoire Parant <g.parant@thecodingmachine.com>
This commit is contained in:
Gregoire Parant 2022-01-25 11:37:29 +01:00
parent 2312d2e129
commit 7a7addb061

View file

@ -26,19 +26,25 @@
<style lang="scss">
main.warningMain {
pointer-events: auto;
width: 100vw;
background-color: red;
text-align: center;
position: absolute;
left: 50%;
transform: translate(-50%, 0);
font-family: Lato;
min-width: 300px;
opacity: 0.9;
z-index: 2;
h2 {
padding: 5px;
}
pointer-events: auto;
width: 100vw;
background-color: #F9E81E;
color: #14304C;
text-align: center;
position: absolute;
left: 50%;
transform: translate(-50%, 0);
font-family: Lato;
min-width: 300px;
opacity: 0.9;
z-index: 2;
h2 {
padding: 5px;
}
a {
color: #FF475a;
}
}
</style>