fix char sidebard and tabs scroll

This commit is contained in:
moliloo 2025-07-24 18:54:05 -03:00
parent 2357aaeb31
commit 6565ab75be
9 changed files with 146 additions and 114 deletions

View file

@ -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;
}