Highlight links in video description

This commit is contained in:
Bnyro 2023-07-17 10:49:38 +02:00
parent d82a93fd0b
commit 98faddaf97
1 changed files with 6 additions and 1 deletions

View File

@ -158,7 +158,7 @@
</span>
<!-- eslint-disable-next-line vue/no-v-html -->
<div v-show="showDesc" class="break-words" v-html="purifyHTML(video.description)" />
<div v-show="showDesc" class="break-words description" v-html="purifyHTML(video.description)" />
<template v-if="showDesc">
<div
v-if="sponsors && sponsors.segments"
@ -666,4 +666,9 @@ export default {
opacity: 0;
transform: translateX(100%) scale(0.5);
}
.description a {
text-decoration: underline;
filter: brightness(0.75);
}
</style>