Compare commits

...

3 Commits

Author SHA1 Message Date
Emilia Allison 53336c410c
fix: scroll tree on overflow
Gitea Scan/plate-tool/pipeline/head This commit looks good Details
2025-01-15 23:05:23 -05:00
Emilia Allison 711af96d29
fix: line height on 96 & 384
Gitea Scan/plate-tool/pipeline/head This commit looks good Details
2025-01-15 22:24:41 -05:00
Emilia Allison f7c3069145
fix: justify flex-start on shorter screens
Gitea Scan/plate-tool/pipeline/head This commit looks good Details
2025-01-15 22:09:44 -05:00
3 changed files with 42 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;

View File

@ -53,6 +53,41 @@ td.current_select div.plate_cell_inner {
// Styles for specific plate types: // Styles for specific plate types:
.W96 {
th {
font-size: 0.9rem;
line-height: 0px;
}
tr:first-child {
th {
line-height: inherit;
}
}
td {
padding: 0;
}
td.current_select div.plate_cell_inner {
border: 2px solid black;
}
}
.W384 {
th {
font-size: 0.9rem;
line-height: 0px;
}
tr:first-child {
th {
line-height: inherit;
}
}
td {
padding: 0;
}
td.current_select div.plate_cell_inner {
border: 2px solid black;
}
}
.W1536 { .W1536 {
th { th {

View File

@ -13,6 +13,8 @@ div.tree {
height: 100%; height: 100%;
border: 2px solid $color-dark; border: 2px solid $color-dark;
overflow: scroll;
h3 { h3 {
margin-left: 0.5rem; margin-left: 0.5rem;
} }