Improving the ads on portrait mode.

This commit is contained in:
sergiotarxz 2023-09-10 12:42:29 +02:00
parent 03f9d76d77
commit 45d9e3cd0b
2 changed files with 19 additions and 0 deletions

View File

@ -432,3 +432,10 @@ body {
@media (max-width: 200px) {
body {
font-size: 20px; } }
@media (max-height: 400px) {
body div.carousel {
height: 120px;
top: calc(100% - 120px); }
div.page-contents {
height: calc(100% - 60px - 120px); } }

View File

@ -679,3 +679,15 @@ body {
font-size: 20px;
}
}
@media (max-height: 400px) {
body {
div.carousel {
height: 120px;
top: calc(100% - 120px);
}
}
div.page-contents {
height: calc(100% - 60px - 120px);
}
}