Hyperline / hyperline

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

How do I update the status line's height? #188

Open zhao-li opened 4 years ago

zhao-li commented 4 years ago

Thanks for making this awesome product.

I tried following this example to update the status line style: https://github.com/Hyperline/hyperline/issues/163 with something like this:

  hyperline: {
      css: `.line {
        height: '50px';
      }`,
      "line-height": "50px",
      "line-height": 50,
      lineHeight: '50px',
      lineHeight: '50',
      height: '50px',
      height: '50',
    },

But I could not get any of those settings to increase the height of the status line: https://github.com/Hyperline/hyperline/blob/master/src/lib/core/hyperline.js#L32

I tried changing the margin and padding css styles as well, but could not get anything to work.

Can you please provide some example configuration to do this? Or is this just not possible?

Thank you for your time :)