Halve
Halve copied to clipboard
Project titles extend past box border on mobile
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.
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;
}