Zeioth/atom-visual-studio-code-ui

bottom status bar interferes with last line of text

Closed this issue · 2 comments

I notice with this theme ( as much as I like it ) that the larger blue notification bar at the bottom interferes with displaying the last line of text for sufficiently large documents

I've found a thread about this problem. It looks like right now, due to the CSS structure of atom, it's not possible to set 100% width in the status bar without running into this bug. They are working on it.

Meanwhile you can paste this into your styles.less, the status bar will be smaller but it will fix this issue.

.status-bar {
  position: relative;
}

The new version includes this solution by default.