fix: tab bar no longer overflows document
Signed-off-by: mellobacon <mellodev@outlook.com>
mellobacon committed
Nov 5, 2023 at 16:59 UTC
6dc2374f9d3dc057c20f224b6a5b3532f3776ab5
1 file changed
+2
-1
src/lib/EditorTabList.svelte
+2
-1
@@ -114,7 +114,8 @@
114
}
115
#editor-tabs {
116
width: 100%;
117
- display: flex;
117
+ display: grid;
118
+ grid-auto-flow: column;
119
justify-content: space-between;
120
}
121
.tab-toolbar {