Fix height of main
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Alessio Davoli 2023-07-24 12:09:14 +02:00
parent d9e726850e
commit 0135d749f0
2 changed files with 4 additions and 4 deletions

View file

@ -38,7 +38,7 @@
<style> <style>
main { main {
max-height: calc(100% - 10vh - 10px); height: calc(100% - 10vh - 10px);
} }
div { div {

View file

@ -18,9 +18,9 @@
flex-wrap: wrap; flex-wrap: wrap;
justify-content: center; justify-content: center;
gap: 15px; gap: 15px;
margin-top: 70px;
padding-top: 10px; padding-top: 10px;
max-height: calc(100% - 20vh); margin-top: 70px;
height: calc(100% - 140px - 10vh);
overflow-y: scroll; overflow-y: scroll;
} }
</style> </style>