Files
2026-04-28 15:13:50 +02:00

18 lines
359 B
CSS

#cmplz-cookiebanner-container .cmplz-cookiebanner {
bottom: -50vh;
-webkit-animation: slideIn 0.5s forwards;
-webkit-animation-delay: 1s;
animation: slideIn 0.5s forwards;
animation-delay: 1s;
}
@-webkit-keyframes slideIn {
100% {
bottom: 0;
}
}
@keyframes slideIn {
100% {
bottom: 0;
}
}
/*# sourceMappingURL=bottom-slide.css.map */