improved tabControl tabs scrolling #730

This commit is contained in:
Jan Prochazka
2024-07-30 13:25:33 +02:00
parent b0405855aa
commit 4346147bfc

View File

@@ -62,11 +62,11 @@
.main { .main {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow: auto;
} }
.main.flex1 { .main.flex1 {
flex: 1; flex: 1;
max-width: 100%;
} }
.tabs { .tabs {
@@ -75,6 +75,12 @@
min-height: var(--dim-tabs-height); min-height: var(--dim-tabs-height);
right: 0; right: 0;
background-color: var(--theme-bg-2); background-color: var(--theme-bg-2);
overflow-x: auto;
max-width: 100%;
}
.tabs::-webkit-scrollbar {
height: 7px;
} }
.tab-item { .tab-item {