Make the combined sheet scrollable and more consistent in design (closes #43)

This commit is contained in:
Oliver-Akins 2025-07-10 21:39:44 -06:00
parent 38c83586e5
commit 0df7bcdea9
2 changed files with 3 additions and 0 deletions

View file

@ -4,10 +4,12 @@
grid-template-columns: repeat(3, minmax(0, 3fr)); grid-template-columns: repeat(3, minmax(0, 3fr));
grid-template-rows: repeat(5, minmax(0, 1fr)); grid-template-rows: repeat(5, minmax(0, 1fr));
grid-auto-flow: column; grid-auto-flow: column;
padding: 8px;
.col-header { .col-header {
background: var(--section-header-background); background: var(--section-header-background);
color: var(--section-header-text); color: var(--section-header-text);
border-radius: 999px;
} }
label, .label { label, .label {

View file

@ -4,6 +4,7 @@
> .window-content { > .window-content {
gap: 4px; gap: 4px;
background: var(--base-background); background: var(--base-background);
overflow-y: auto;
} }
.HeroSkillsCardV1 { .HeroSkillsCardV1 {