fix: very long words overflowing in descriptions and comments
This commit is contained in:
parent
246d6794d8
commit
9936d3683e
1 changed files with 2 additions and 0 deletions
|
@ -326,6 +326,8 @@ export default defineComponent({
|
||||||
|
|
||||||
.preview.content {
|
.preview.content {
|
||||||
margin-bottom: .5rem;
|
margin-bottom: .5rem;
|
||||||
|
overflow-wrap: anywhere; // Safari does not understand "break-word" so we put that first to make sure it at least is able to show it somewhat properly there.
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
|
||||||
ul li {
|
ul li {
|
||||||
input[type="checkbox"] {
|
input[type="checkbox"] {
|
||||||
|
|
Loading…
Reference in a new issue