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 arsnova/arsnova-lite!225
parents 930a8aa3 5de8fa00
1 merge request!225Manage overflowing comment presentation view
Pipeline #27146 passed with stages
in 7 minutes and 27 seconds
...@@ -12,5 +12,7 @@ ...@@ -12,5 +12,7 @@
<mat-icon >exit_to_app</mat-icon> <mat-icon >exit_to_app</mat-icon>
</button> </button>
<div id="comment"> <div id="comment">
{{body}} <p>
{{body}}
</p>
</div> </div>
...@@ -6,7 +6,15 @@ ...@@ -6,7 +6,15 @@
min-height: 90vh; min-height: 90vh;
font-size: 2.1em; font-size: 2.1em;
margin: 5%; 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 { #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