Hyperline / hyperline

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

Vertical/Horizontal Scrollbars #137

Closed kevintongg closed 6 years ago

kevintongg commented 6 years ago

Updated to the new hyperline with the new design and I now have scrollbars.

robvankeilegom commented 6 years ago

Same here on W10.

Grimones commented 6 years ago

Same here on W10 too

AndKenneth commented 6 years ago

Same issue on macOS High Sierra

screen shot 2018-01-05 at 11 44 49 pm

Gevie commented 6 years ago

If you use hyper-stylesheet you can add the following css to temporarily fix this issue.

/* #window */
.hyperline_line {
        bottom: 6px !important;
        margin: auto !important;
}
gluons commented 6 years ago

Same here on Linux Mint 18.3

keremcankabadayi commented 6 years ago

same macOs 10.13.2 Beta (17C79a)

TotomInc commented 6 years ago

Looks like hyperline add by default a margin: 10px 10px 0 10px and sets itself with a position: absolute at bottom: 1px, you can override this by adding in your terminal CSS like @Gevie said:

.hyperline_line {
  margin: 0;
  bottom: 0px;
}

Horizontal and vertical scrollbars will go away:

image