Fix sheet header

This commit is contained in:
Dapoolp 2025-07-27 14:17:19 +02:00
parent cb45c37f57
commit d45976f469
5 changed files with 6 additions and 6 deletions

View file

@ -19,7 +19,7 @@
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
gap: 5px; gap: 5px;
margin-top: 36px; margin-top: var(--header-height);
text-align: center; text-align: center;
width: 80%; width: 80%;

View file

@ -15,6 +15,9 @@
// Window header styles // Window header styles
.window-header { .window-header {
position: absolute;
width: 100%;
height: var(--header-height);
background: transparent; background: transparent;
border-bottom: none; border-bottom: none;
justify-content: end; justify-content: end;
@ -41,11 +44,9 @@
.window-content { .window-content {
padding: 0; padding: 0;
position: relative; position: relative;
top: -36px;
min-height: -webkit-fill-available; min-height: -webkit-fill-available;
transition: opacity 0.3s ease; transition: opacity 0.3s ease;
padding-bottom: 20px; padding-bottom: 20px;
margin-bottom: -36px;
.tab { .tab {
padding: 0 10px; padding: 0 10px;

View file

@ -4,7 +4,7 @@
.application.sheet.daggerheart.actor.dh-style.adversary { .application.sheet.daggerheart.actor.dh-style.adversary {
.adversary-header-sheet { .adversary-header-sheet {
padding: 0 15px; padding: 0 15px;
padding-top: 36px; padding-top: var(--header-height);
width: 100%; width: 100%;
.name-row { .name-row {

View file

@ -16,7 +16,7 @@
.application.sheet.daggerheart.actor.dh-style.character { .application.sheet.daggerheart.actor.dh-style.character {
.character-header-sheet { .character-header-sheet {
padding: 0 15px; padding: 0 15px;
padding-top: 36px; padding-top: var(--header-height);
width: 100%; width: 100%;
.name-row { .name-row {

View file

@ -11,7 +11,6 @@
width: 100%; width: 100%;
padding-bottom: 0; padding-bottom: 0;
overflow-x: auto; overflow-x: auto;
margin-bottom: 0;
.character-sidebar-sheet { .character-sidebar-sheet {
grid-row: 1 / span 2; grid-row: 1 / span 2;