fix(editor): prevent double scrollbars in biography tab

This commit is contained in:
Alexander Minges 2025-07-17 18:19:06 +02:00
parent 07fa1487f1
commit 970f69be53
Signed by: Athemis
GPG key ID: 31FBDEF92DDB162B
3 changed files with 81 additions and 0 deletions

View file

@ -7,4 +7,9 @@
.ds4-sheet-body {
height: 100%;
overflow-y: auto;
// Prevent double scrollbars on biography tab
.ds4-sheet-tab.tab.biography.active {
overflow: hidden;
}
}