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>
main {
max-height: calc(100% - 10vh - 10px);
height: calc(100% - 10vh - 10px);
}
div {

View file

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