feature: take full page and display footer at bottom pf window (#383)

This commit is contained in:
James Read 2024-08-14 07:56:30 +01:00 committed by GitHub
parent 274d036f74
commit 37160a91f3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,9 @@
html, body {
display: flex;
flex-direction: column;
height: 100%;
}
body {
background-color: #dee3e7;
color: black;
@ -356,6 +362,7 @@ img.logo {
main {
padding: 1em;
padding-top: 3.5em;
flex-grow: 1;
}
summary {
@ -411,7 +418,7 @@ input[name="start"]:hover {
div.arguments {
display: grid;
grid-template-columns: max-content auto auto; /* We don't want the label or the description to wrap, and the input to take up the rest of the space */
grid-template-rows: repeat(auto-fill, 1fr);
grid-template-rows: auto;
grid-gap: 1em;
align-items: center;