fix: 🐛 Fix watch page title wrapping

This commit is contained in:
Kenny 2022-07-07 00:44:45 -04:00
parent 8d205d7dd1
commit d16a484088
1 changed files with 5 additions and 2 deletions

View File

@ -27,11 +27,10 @@
>
<div class="d-flex flex-column">
<v-card-title
class="pa-0"
class="pa-0 text-wrap"
style="
font-size: 0.95rem;
line-height: 1.15rem;
overflow-wrap: break-word;
"
v-text="video.title"
v-emoji
@ -566,4 +565,8 @@ export default {
.keep-spaces {
white-space: pre-wrap;
}
.v-card__title {
word-break: break-word;
}
</style>