Add class to fix wrapping

This commit is contained in:
Annabel Dunstone Gray 2018-06-01 15:08:25 -07:00
parent adbdd8e309
commit e54d456b47
No known key found for this signature in database
GPG key ID: 7C8C78A372AD7A2D
2 changed files with 5 additions and 1 deletions

View file

@ -71,7 +71,7 @@ export default {
<td
v-for="key in keys"
:key="key"
class="break-word"
class="break-word all-words"
>
{{ item[key] }}
</td>

View file

@ -448,6 +448,10 @@ img.emoji {
.break-word {
word-wrap: break-word;
&.all-words {
word-break: break-word;
}
}
/** COMMON CLASSES **/