hydecorp / hydejack

A boutique Jekyll theme for hackers, nerds, and academics
https://hydejack.com
Other
1.42k stars 804 forks source link

Is there a way to reduce the margin or padding on top of headers #289

Closed harwinds closed 3 years ago

harwinds commented 3 years ago

Looking for a possible solution to reduce/decrease the margin or padding size above headings.

qwtel commented 3 years ago

Overwrite in _sass/my-inline.scss:

h1, h2, h3, .h1, .h2, .h3 {
  margin: 4rem 0 1rem;
}

h4, h5, h6, .h4, .h5, .h6 {
  margin: 3rem 0 .5rem;
}