mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-18 19:38:07 +03:00
db3fb0bf2e
Cherry-pick #16430 to version-2025.8 (with conflicts)
This cherry-pick has conflicts that need manual resolution.
Original PR: #16430
Original commit: 6d81aea5aa
Co-authored-by: Teffen Ellis <592134+GirlBossRush@users.noreply.github.com>
23 lines
373 B
CSS
23 lines
373 B
CSS
.container {
|
|
flex: 1 1 auto;
|
|
place-content: center;
|
|
}
|
|
|
|
.delayedReveal {
|
|
visibility: hidden;
|
|
animation: delayedReveal 0.25s var(--ifm-transition-timing-default) forwards;
|
|
animation-delay: 3s;
|
|
}
|
|
|
|
@keyframes delayedReveal {
|
|
0% {
|
|
visibility: hidden;
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
visibility: visible;
|
|
opacity: 1;
|
|
}
|
|
}
|