Change min height of actor sheet

This commit is contained in:
Johannes Loher 2021-04-20 22:44:31 +02:00
parent db69a8f537
commit 65a79a351d
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ export class DS4ActorSheet extends ActorSheet<ActorSheet.Data<DS4Actor>> {
return mergeObject(superDefaultOptions, {
...superDefaultOptions,
classes: ["ds4", "sheet", "actor"],
height: 615,
height: 620,
scrollY: [
".values",
".inventory",

View file

@ -1,4 +1,4 @@
.ds4.sheet.actor {
min-width: 650px;
min-height: 610px;
min-height: 620px;
}