Get items appearing on the sheet, still a lot to do but this is a strong step in the right direction

This commit is contained in:
Oliver 2026-03-15 22:37:55 -06:00
parent 6b03d62234
commit 23a402f11a
9 changed files with 254 additions and 10 deletions

View file

@ -37,6 +37,64 @@
}
}
.item-list {
list-style: none;
margin: 0;
padding: 0;
}
.item {
background: var(--item-card-background);
color: var(--item-card-color);
border-radius: 4px;
overflow: hidden;
.summary {
display: grid;
grid-template-columns: auto 1fr 50px auto;
align-items: center;
gap: 8px;
background: var(--item-card-header-background);
color: var(--item-card-header-color);
padding: 4px;
img {
--size: 35px;
width: var(--size);
height: var(--size);
border-radius: 6px;
}
.title {
display: flex;
flex-direction: column;
gap: 4px;
}
.name {
font-size: 1.1rem;
}
.subtitle {
font-size: 0.7rem;
opacity: 90%;
}
input {
background: var(--item-card-header-input-background);
color: var(--item-card-header-input-color);
text-align: center;
}
}
.full-details {
padding: 4px;
&[data-expanded="false"] {
display: none;
}
}
}
.content {
flex-grow: 1;
overflow: hidden;

View file

@ -7,6 +7,13 @@
--tab-button-active-border: rebeccapurple;
--tab-button-hover-bg: var(--color-cool-3);
--item-card-background: #1d262f;
--item-card-color: white;
--item-card-header-background: #242d38;
--item-card-header-color: white;
--item-card-header-input-background: #2b3642;
--item-card-header-input-color: white;
/* Chip Variables */
--chip-color: #fff7ed;
--chip-background: #2b3642;