Add the quantity input to the item details tab (closes #154)

This commit is contained in:
Oliver-Akins 2024-04-01 21:08:59 -06:00
parent 82452f4f7c
commit 1c2ced321b
7 changed files with 45 additions and 16 deletions

View file

@ -2,4 +2,8 @@
.dotdungeon.style-v3 > .window-content label {
cursor: pointer;
&.justify-start {
justify-self: start;
}
}

View file

@ -7,9 +7,8 @@
padding: 4px 8px;
color: white;
transition: all 200ms ease-in-out;
width: 50px;
height: auto;
text-align: center;
line-height: 1rem;
&:hover {
@include material.elevate(4);

View file

@ -12,6 +12,10 @@
flex-direction: row;
gap: var(--gap);
align-items: center;
&.space-between {
justify-content: space-between;
}
}
}
}

View file

@ -8,6 +8,7 @@
padding: 4px 8px;
color: white;
transition: all 200ms ease-in-out;
width: 6.25rem;
&:hover {
@include material.elevate(4);

View file

@ -14,6 +14,7 @@
@use "./elements/icons.scss";
@use "./elements/nav.scss";
@use "./elements/panel.scss";
@use "./elements/label.scss";
/* Sheet Layouts */
@use "./layouts/datasheet.scss";

View file

@ -48,6 +48,12 @@
@include utils.tab("details") {
@extend %flex-col;
.number {
display: grid;
grid-template-columns: 1fr 55px;
align-items: center;
}
}
@include utils.tab("settings") {