19 lines
397 B
CSS
19 lines
397 B
CSS
#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;
|
|
}
|
|
}
|
|
}
|