Skip to content
Snippets Groups Projects
Commit cc8adac8 authored by Lukas Mauß's avatar Lukas Mauß
Browse files

Merge branch 'comment-present-view' into 'master'

Manage overflowing comment presentation view

Closes #247

See merge request !225
parents 930a8aa3 5de8fa00
Branches
Tags
No related merge requests found
......@@ -12,5 +12,7 @@
<mat-icon >exit_to_app</mat-icon>
</button>
<div id="comment">
{{body}}
<p>
{{body}}
</p>
</div>
......@@ -6,7 +6,15 @@
min-height: 90vh;
font-size: 2.1em;
margin: 5%;
word-break: break-all;
}
#comment p {
overflow-wrap: break-word;
word-wrap: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
}
#exitButton {
......
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