Implement the buttons spinbuttons for the inventory area

This commit is contained in:
Oliver-Akins 2024-02-07 19:39:24 -07:00
parent 1c737b3dc4
commit 4544516c5c
8 changed files with 131 additions and 71 deletions

View file

@ -79,6 +79,12 @@
flex-direction: row;
align-items: center;
}
.grid-row {
display: grid;
grid-template-columns: 1fr min-content 25% min-content;
gap: 4px;
align-items: center;
}
.col {
display: flex;
flex-direction: column;
@ -95,11 +101,15 @@
.bytes-input,
.supplies-count,
.materials-count {
width: 25%;
.materials-count,
.item-quantity {
text-align: center;
}
.item-quantity {
width: 25%
}
textarea {
resize: vertical;
}