optimizing responsive for cookies consent

This commit is contained in:
Antoine M 2024-05-29 12:03:38 +02:00
parent 6e56d6baa8
commit 0f435267fa

View File

@ -0,0 +1,18 @@
#cmplz-cookiebanner-container {
@media screen and (max-height: 500px), screen and (max-width: 350px) {
.cmplz-cookiebanner {
overflow: scroll;
height: 800px;
height: fit-content;
max-height: unset;
top: 0;
position: absolute;
}
.cmplz-body {
height: fit-content;
display: block;
max-height: unset;
}
}
}