fix: make adversary and character page both resizeable and scroll able; fix overflow issue in adversary page.

This commit is contained in:
David.L 2025-07-06 20:16:36 +03:00
parent 488844603a
commit 4ca5c41025
3 changed files with 4 additions and 2 deletions

View file

@ -8,6 +8,7 @@ export default class AdversarySheet extends DaggerheartSheet(ActorSheetV2) {
tag: 'form',
classes: ['daggerheart', 'sheet', 'actor', 'dh-style', 'adversary'],
position: { width: 660, height: 766 },
window: { resizable: true },
actions: {
reactionRoll: this.reactionRoll,
useItem: this.useItem,

View file

@ -5,7 +5,7 @@
.window-content {
display: grid;
grid-template-columns: 275px 1fr;
grid-template-rows: 283px 1fr;
grid-template-rows: auto 1fr;
gap: 15px 0;
height: 100%;
width: 100%;

View file

@ -5,10 +5,11 @@
.window-content {
display: grid;
grid-template-columns: 275px 1fr;
grid-template-rows: 283px 1fr;
grid-template-rows: auto 1fr;
gap: 15px 0;
height: 100%;
width: 100%;
overflow: auto;
.character-sidebar-sheet {
grid-row: 1 / span 2;