mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
* enhance settings style applications * enhance beastform application and fix action selection style * Start-aligned downtime move fieldsets * requested changes * fixing continue button style * fixing double scroll bars in char sheet * set currency above item list * fix experience not appearing in sidebar --------- Co-authored-by: WBHarry <williambjrklund@gmail.com>
30 lines
669 B
Text
30 lines
669 B
Text
@import '../../../utils/colors.less';
|
|
@import '../../../utils/fonts.less';
|
|
|
|
.application.sheet.daggerheart.actor.dh-style.character {
|
|
.window-content {
|
|
display: grid;
|
|
grid-template-columns: 275px 1fr;
|
|
grid-template-rows: auto 1fr;
|
|
gap: 15px 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
padding-bottom: 0;
|
|
overflow-x: auto;
|
|
|
|
.character-sidebar-sheet {
|
|
grid-row: 1 / span 2;
|
|
grid-column: 1;
|
|
}
|
|
|
|
.character-header-sheet {
|
|
grid-row: 1;
|
|
grid-column: 2;
|
|
}
|
|
|
|
.tab {
|
|
grid-row: 2;
|
|
grid-column: 2;
|
|
}
|
|
}
|
|
}
|