fixed split margin

This commit is contained in:
Jan Prochazka 2023-03-06 18:46:07 +01:00
parent 75c5d30ad3
commit 36ccba7988

View File

@ -478,7 +478,7 @@
</script> </script>
<div class="root"> <div class="root">
<div class="tabs" on:wheel={handleTabsWheel} bind:this={domTabs}> <div class="tabs" class:can-split={allowSplitTab} on:wheel={handleTabsWheel} bind:this={domTabs}>
{#each groupedTabs as tabGroup} {#each groupedTabs as tabGroup}
<div class="db-wrapper"> <div class="db-wrapper">
{#if !$lockedDatabaseMode} {#if !$lockedDatabaseMode}
@ -637,6 +637,9 @@
right: 35px; right: 35px;
bottom: 0; bottom: 0;
} }
.tabs.can-split {
right: 60px;
}
.tabs::-webkit-scrollbar { .tabs::-webkit-scrollbar {
height: 7px; height: 7px;
} }