fix: justify flex-start on shorter screens
Gitea Scan/plate-tool/pipeline/head This commit looks good Details

This commit is contained in:
Emilia Allison 2025-01-15 22:09:44 -05:00
parent 0e0d72ec9c
commit f7c3069145
Signed by: emilia
GPG Key ID: 05D5D1107E5100A1
1 changed files with 5 additions and 1 deletions

View File

@ -6,13 +6,17 @@ div.plate_container {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: space-evenly; justify-content: flex-start;
align-items: center; align-items: center;
border: 2px solid $color-dark; border: 2px solid $color-dark;
grid-column: right / right; grid-column: right / right;
grid-row: upper / 3; grid-row: upper / 3;
@media (min-height: 900px) {
justify-content: space-evenly;
}
h2 { h2 {
margin-bottom: 1%; margin-bottom: 1%;
text-align: center; text-align: center;