@setoelkahfi / svara / commits / b2b9cf8

Removed uneeded text clipping on overflow

mellobacon committed Oct 10, 2022 at 04:02 UTC b2b9cf8e753cf5fc57ad862248c7d40f877a293c
1 file changed +1 -2
src/components/Content/Editor/Tab.svelte
+1 -2
@@ -29,7 +29,7 @@
29 .tab {
30 background-color: rgb(58 58 58);
31 height: 100%;
32 - min-width: 150px;
32 + min-width: min-content;
33 flex-grow: 0.05;
34 display: flex;
35 overflow: hidden;
@@ -69,7 +69,6 @@
69 }
70 .tab-label {
71 text-overflow: ellipsis;
72 - overflow-x: clip;
72 white-space: nowrap;
73 padding-right: 20px;
74 }