mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-03-07 14:36:13 +01:00
Fixed max height
This commit is contained in:
parent
f3e87b1641
commit
5befeb0aa1
2 changed files with 10 additions and 7 deletions
|
|
@ -14,8 +14,7 @@ export default class CompendiumBrowserSettings extends HandlebarsApplicationMixi
|
||||||
classes: ['daggerheart', 'dialog', 'dh-style', 'views', 'compendium-brower-settings'],
|
classes: ['daggerheart', 'dialog', 'dh-style', 'views', 'compendium-brower-settings'],
|
||||||
window: {
|
window: {
|
||||||
icon: 'fa-solid fa-book',
|
icon: 'fa-solid fa-book',
|
||||||
title: 'DAGGERHEART.APPLICATIONS.CompendiumBrowserSettings.title',
|
title: 'DAGGERHEART.APPLICATIONS.CompendiumBrowserSettings.title'
|
||||||
resizable: true
|
|
||||||
},
|
},
|
||||||
position: {
|
position: {
|
||||||
width: 500
|
width: 500
|
||||||
|
|
|
||||||
|
|
@ -2,11 +2,15 @@
|
||||||
--text-color: light-dark(@dark-blue, @beige);
|
--text-color: light-dark(@dark-blue, @beige);
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
|
|
||||||
.window-content > div {
|
.window-content {
|
||||||
overflow: auto;
|
justify-content: space-between;
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
> div {
|
||||||
height: 100%;
|
overflow: auto;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
max-height: 400px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.types-container {
|
.types-container {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue