TolgaTatli / Halve

Stylish Two-Column Jekyll Theme
https://tolgatatli.github.io/Halve/
MIT License
290 stars 356 forks source link

Project titles extend past box border on mobile #37

Open awnumar opened 7 years ago

awnumar commented 7 years ago

On the projects overlay, long titles extend past the box if viewing on mobile. The same problem probably exists on desktop too but since screens are so much larger, you'd need a bigger title to trigger it.

ScreamingHawk commented 7 years ago

Add -ms-word-wrap: break-word; word-wrap: break-word; to the h tag brackets in assets/_sass/_base.scss. Will look like this:

// h tags
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 2rem 0 0.5rem;
  font-family: $base-font;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}