Fixed features tab scrolling

This commit is contained in:
WBHarry 2026-05-31 03:09:17 +02:00
parent 951c8c7156
commit 2bd0f45237
2 changed files with 20 additions and 1 deletions

View file

@ -0,0 +1,18 @@
.application.sheet.daggerheart.actor.dh-style.npc {
.tab.features {
&.active {
overflow: hidden;
display: flex;
flex-direction: column;
}
.feature-section {
display: flex;
flex-direction: column;
gap: 10px;
overflow-y: auto;
mask-image: linear-gradient(0deg, transparent 0%, black 5%);
padding-bottom: 20px;
}
}
}

View file

@ -1,2 +1,3 @@
@import './sheet.less'; @import './sheet.less';
@import './header.less'; @import './header.less';
@import './features.less';