Fixed max height

This commit is contained in:
WBHarry 2026-02-08 16:51:45 +01:00
parent f3e87b1641
commit 5befeb0aa1
2 changed files with 10 additions and 7 deletions

View file

@ -14,8 +14,7 @@ export default class CompendiumBrowserSettings extends HandlebarsApplicationMixi
classes: ['daggerheart', 'dialog', 'dh-style', 'views', 'compendium-brower-settings'],
window: {
icon: 'fa-solid fa-book',
title: 'DAGGERHEART.APPLICATIONS.CompendiumBrowserSettings.title',
resizable: true
title: 'DAGGERHEART.APPLICATIONS.CompendiumBrowserSettings.title'
},
position: {
width: 500

View file

@ -2,11 +2,15 @@
--text-color: light-dark(@dark-blue, @beige);
color: var(--text-color);
.window-content > div {
overflow: auto;
display: flex;
flex-direction: column;
height: 100%;
.window-content {
justify-content: space-between;
> div {
overflow: auto;
display: flex;
flex-direction: column;
max-height: 400px;
}
}
.types-container {