mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-14 20:51:07 +01:00
[BUGFIX] - Fix scroll problems in char sheet (#404)
* Fix scrollable tab * fix char sidebard and tabs scroll * Removed comment --------- Co-authored-by: Dapoolp <elcatnet@gmail.com> Co-authored-by: WBHarry <williambjrklund@gmail.com>
This commit is contained in:
parent
55e003aa3b
commit
e8e328039e
11 changed files with 152 additions and 115 deletions
|
|
@ -20,3 +20,27 @@
|
|||
@lightRules();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Apply a style to sidebar titles.
|
||||
*/
|
||||
.section-title() {
|
||||
display: flex;
|
||||
gap: 15px;
|
||||
align-items: center;
|
||||
|
||||
h3 {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Apply default item list style.
|
||||
* @param {Length} @gap - The vertical spacing between elements (e.g., 10px, 1rem)
|
||||
*/
|
||||
.column-list(@gap: 10px) {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: @gap;
|
||||
align-items: center;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue