UI: Remove extra bottom padding on page

The padding is added by the grid gap so it was duplicate.
This commit is contained in:
Pablo Vazquez 2022-07-07 12:36:46 +02:00
parent 7032c1ad0b
commit 2712f565f0

View File

@ -94,8 +94,9 @@ body {
"footer footer footer";
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: var(--header-height) 1fr var(--footer-height);
padding: var(--grid-gap);
height: calc(100% - calc(var(--grid-gap) * 2));
height: 100%;
padding-left: var(--grid-gap);
padding-right: var(--grid-gap);
width: calc(100% - calc(var(--grid-gap) * 2));
}