daggerheart/styles/less/sheets/actors/character/biography.less
Carlos Fernandez eccab6ad64
Some checks failed
Project CI / build (24.x) (push) Has been cancelled
[UI] Make sheet tab scrollsbars stable, remove fieldsets, and adjust padding (#1944)
* Remove certain fieldsets and adjust scrollsbars

* Also remove fieldset for npc features and fix padding issue in full screen notes
2026-07-03 11:32:51 +02:00

40 lines
1,012 B
Text

@import '../../../utils/colors.less';
@import '../../../utils/fonts.less';
@import '../../../utils/mixin.less';
.application.sheet.daggerheart.actor.dh-style.character {
.tab.biography {
.items-section {
display: flex;
flex-direction: column;
gap: 10px;
height: 100%;
padding: 12px calc(12px - var(--scrollbar-width)) 4px 12px;
.stable-scroll-container();
}
.characteristics-section {
gap: 20px;
padding: 0 4px;
}
.biography-section {
prose-mirror {
--min-height: 50px;
}
prose-mirror.inactive .editor-content {
position: relative;
}
}
&:has(.prosemirror.active) {
.biography-section {
flex: 1;
&:not(:has(prose-mirror.active)) {
display: none;
}
}
}
}
}