Commit bb434075 by Akiva Leffert

Force wrapping for long content like hyperlinks.

Content that doesn't fit on the screen was causing the viewport to be
the wrong size on mobile devices resulting. This forces wrapping for
long content instead of letting it force the viewport size.

JIRA: https://openedx.atlassian.net/browse/MA-1236
parent dffcc25b
......@@ -102,6 +102,13 @@ div.course-wrapper {
@extend .content;
padding: ($baseline*2);
line-height: 1.6;
.xblock {
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
}
h1 {
margin: 0 0 lh();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment