Halve icon indicating copy to clipboard operation
Halve copied to clipboard

Project titles extend past box border on mobile

Open awnumar opened this issue 8 years ago • 1 comments

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.

awnumar avatar Feb 19 '17 09:02 awnumar

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;
}

ScreamingHawk avatar Mar 16 '17 01:03 ScreamingHawk