Finish getting the main item sheet completed and fully functional

This commit is contained in:
Oliver 2026-03-13 21:31:03 -06:00
parent 2518c7cf05
commit 94b3ec923b
4 changed files with 103 additions and 14 deletions

View file

@ -15,4 +15,38 @@
border-radius: 4px;
}
}
.content {
display: contents;
}
.property {
display: grid;
grid-template-columns: 1fr 100px;
align-items: center;
gap: 8px;
input[type="checkbox"] {
justify-self: end;
}
}
.description {
flex-grow: 1;
overflow: hidden;
--table-row-color-odd: var(--table-header-bg-color);
&:not(:has(> prose-mirror)) {
padding: 0.5rem;
}
}
prose-mirror {
height: 100%;
menu {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
}
}