feat(PPR): bg is twice size on the log screen.

This commit is contained in:
scar 2022-02-01 18:15:01 +01:00
parent 2701a693f5
commit 06cae409e7

View File

@ -8,10 +8,13 @@ domain("ppr-admin.alkemics.com") {
} }
.AuthLayoutFooter, .AuthLayoutFooter,
.Navbar.navbar.Navbar--PPR.bg-inverse { .Navbar.navbar.Navbar--PPR.bg-inverse {
background: repeating-linear-gradient(-45deg, var(--color2) 25%, var(--color1) 50%, var(--color1) 75%) repeat-x; background: repeating-linear-gradient(-45deg, var(--color2) 25%, var(--color1) 50%, var(--color1) 75%);
background-size: var(--stripe-size) var(--stripe-size); background-size: var(--stripe-size) var(--stripe-size);
animation: alkegrad var(--duration) linear infinite; animation: alkegrad var(--duration) linear infinite;
} }
.AuthLayoutFooter {
background-size: calc(var(--stripe-size) * 2) calc(var(--stripe-size) * 2);
}
@keyframes alkegrad { @keyframes alkegrad {
from { from {
background-position: 0 0; background-position: 0 0;