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