Hyperline / hyperline

✨ Status line plugin for Hyper ✨
MIT License
619 stars 120 forks source link

Fix horizontal scrollbar appearing on Hyper window #151

Closed b-gran closed 6 years ago

b-gran commented 6 years ago

The overflow: hidden; property on the Hyperline wrapper element isn't taking margin into account for the x-axis, so a horizontal scrollbar is shown.

Here's what this looks like: screen shot 2018-03-25 at 2 20 47 pm

By using padding instead of margin on the x-axis , any x-axis overflow is correctly hidden.

Here's how it looks with the changes in this PR: screen shot 2018-03-25 at 2 32 35 pm

NickTikhonov commented 6 years ago

Thanks Bill!