From 85fa7e8a8a908e8124ddcf37da4869b40f4f0434 Mon Sep 17 00:00:00 2001 From: simurai Date: Wed, 8 Jun 2016 10:56:53 +0900 Subject: [PATCH] Fix overflowing of the tabs This is a follow up for #11866. In this case when there are too many tabs, they start to push `atom-workspace-axis.vertical` beyond the window width. --- static/workspace-view.less | 1 + 1 file changed, 1 insertion(+) diff --git a/static/workspace-view.less b/static/workspace-view.less index ec571ebad..8d7cd3487 100644 --- a/static/workspace-view.less +++ b/static/workspace-view.less @@ -38,5 +38,6 @@ atom-workspace { display: flex; flex: 1; flex-direction: column; + min-width: 0; } }