make body flex

This commit is contained in:
Bruno Rybársky 2024-02-06 17:11:04 +01:00
parent e495c31ed5
commit 054a829ae0

@ -22,6 +22,9 @@ body {
padding: 0;
min-height: 100vh;
min-width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
}
nav {
@ -254,4 +257,8 @@ table.list-table > tbody, table.list-table > tbody > th, table.list-table > tbod
background: none;
border: 2px solid var(--primary);
width: 175px;
}
#pagearea{
flex-grow: 1;
}