Fix text wrapping on long urls in ios theme

// FREEBIE
This commit is contained in:
lilia 2016-09-15 15:34:04 -07:00
parent c8f0fe3fbb
commit 2fec5ee867
2 changed files with 4 additions and 1 deletions

View file

@ -100,6 +100,8 @@ $ios-border-color: rgba(0,0,0,0.1);
display: inline-block;
padding: 10px;
position: relative;
word-break: break-word;
&:before, &:after {
content: '';
display: block;

View file

@ -1423,7 +1423,8 @@ li.entry .error-icon-container {
.ios .bubble .content .body {
display: inline-block;
padding: 10px;
position: relative; }
position: relative;
word-break: break-word; }
.ios .bubble .content .body:before, .ios .bubble .content .body:after {
content: '';
display: block;