Add class to fix wrapping
This commit is contained in:
parent
adbdd8e309
commit
e54d456b47
2 changed files with 5 additions and 1 deletions
|
@ -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>
|
||||
|
|
|
@ -448,6 +448,10 @@ img.emoji {
|
|||
|
||||
.break-word {
|
||||
word-wrap: break-word;
|
||||
|
||||
&.all-words {
|
||||
word-break: break-word;
|
||||
}
|
||||
}
|
||||
|
||||
/** COMMON CLASSES **/
|
||||
|
|
Loading…
Reference in a new issue