Tejit Pabari
Tejit Pabari

Reputation: 63

How to increase tab spacing on top in Atom?

The picture attached shows the problem. Picture showing the problem

As you can see from the picture, the tabs are clustered together.

How can I space them out so that they spread out evenly in the entire space?

Upvotes: 5

Views: 2429

Answers (2)

Fab313
Fab313

Reputation: 2288

This is a better solution: Go to Settings > Themes > theme settings (the gear icon next to the UI theme dropbox) and use the Tab Sizing option

source: https://discuss.atom.io/t/the-tabs-got-shorter-in-v1-8-0-what-happened-how-do-i-go-back/29791

Upvotes: 5

Simon Jentsch
Simon Jentsch

Reputation: 717

You have to edit the custom stylesheet. In the menu bar go to "Atom" > "Stylesheet..." and copy this into the custom stylesheet file:

.tab-bar .tab {
  flex-grow: 1 !important;
  max-width: none;
}

After saving the tabs should spread.

Upvotes: 5

Related Questions