Page MenuHomePhorge

Remarkup header have a fixed line height and are less readable with increased size
Closed, ResolvedPublic

Description

In the remarkup styles there is a fixed line height of 1.7em. This is very high and perfect for reading texts. The headers will have the same fixed line height, even if their font size can be bigger. Especially on mobile this results in ugly sticked together lines which are less readable:

image.png (201×310 px, 14 KB)

I think a relative value for the line heights of remarkup header will go a long way:

image.png (258×309 px, 16 KB)

This would do the trick:

.remarkup-header {
  line-height: 1.3;
}