css hyphens for webkit and moz

This commit is contained in:
Moriz Wahl 2019-11-11 23:01:03 +01:00
parent d0c0fd373a
commit e46a23d445
3 changed files with 4 additions and 2 deletions

View File

@ -171,6 +171,8 @@ hr {
}
.hyphenate-text {
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
overflow-wrap: break-word;
word-wrap: break-word;

View File

@ -1,6 +1,6 @@
<template>
<ds-card
:language="language"
:lang="language"
:image="post.image | proxyApiUrl"
:class="{ 'post-card': true, 'disabled-content': post.disabled, 'post--pinned': isPinned }"
>

View File

@ -1,7 +1,7 @@
<template>
<transition name="fade" appear>
<ds-card
:language="language"
:lang="language"
v-if="post && ready"
:image="post.image | proxyApiUrl"
:class="{ 'post-card': true, 'disabled-content': post.disabled }"