mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-28 22:23:04 +00:00
fix: 🐛 Fix watch page title wrapping
This commit is contained in:
parent
8d205d7dd1
commit
d16a484088
1 changed files with 5 additions and 2 deletions
|
@ -27,11 +27,10 @@
|
||||||
>
|
>
|
||||||
<div class="d-flex flex-column">
|
<div class="d-flex flex-column">
|
||||||
<v-card-title
|
<v-card-title
|
||||||
class="pa-0"
|
class="pa-0 text-wrap"
|
||||||
style="
|
style="
|
||||||
font-size: 0.95rem;
|
font-size: 0.95rem;
|
||||||
line-height: 1.15rem;
|
line-height: 1.15rem;
|
||||||
overflow-wrap: break-word;
|
|
||||||
"
|
"
|
||||||
v-text="video.title"
|
v-text="video.title"
|
||||||
v-emoji
|
v-emoji
|
||||||
|
@ -566,4 +565,8 @@ export default {
|
||||||
.keep-spaces {
|
.keep-spaces {
|
||||||
white-space: pre-wrap;
|
white-space: pre-wrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.v-card__title {
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue