osu-wams / madrone

Drupal Theme
GNU General Public License v2.0
3 stars 1 forks source link

changing line height for site name #243

Closed likello closed 7 months ago

likello commented 8 months ago

right now the line height for the site title is far too large for mobile sizes. it is inheriting from the body copy, which is way too large, especially for mobile.

Can the properties for this element be changed to the following?

 .site-name__site-link {
line-height: 1.3;
padding-block: .75rem;
}

I added the padding because the spacing between the title and the edge of the page is currently provided by the large line height. With the reduced line height, there is no padding between the title and the edge of the page.

likello commented 8 months ago
.block__content__site-name {
  line-height: 1.3;
  padding-block: .75rem;
  margin-left: 1rem;
}

.site-name__group-link--wrapper {
  padding-top: .1rem;
}