mirror of
https://codeberg.org/SafeTwitch/safetwitch.git
synced 2025-02-01 09:08:43 -05:00
Fix username having a to large clickable area #105
This commit is contained in:
parent
f3f6dd88aa
commit
8e23dc0e7f
2 changed files with 2 additions and 2 deletions
|
@ -113,7 +113,7 @@ export default {
|
|||
|
||||
<div class="ml-3 content-between">
|
||||
<router-link :to="'/' + data.streamer.login">
|
||||
<h1 class="text-2xl md:text-4xl font-bold">{{ data.streamer.username }}</h1>
|
||||
<h1 class="text-2xl md:text-4xl font-bold inline-block">{{ data.streamer.username }}</h1>
|
||||
</router-link>
|
||||
<p class="text-sm font-bold text-neutral self-end">
|
||||
{{ truncate(data.title, 130) }}
|
||||
|
|
|
@ -117,7 +117,7 @@ export default {
|
|||
|
||||
<div class="ml-3 content-between w-5/6">
|
||||
<router-link :to="'/' + data.streamer.login">
|
||||
<h1 class="text-2xl md:text-4xl font-bold">{{ data.streamer.username }}</h1>
|
||||
<h1 class="text-2xl md:text-4xl font-bold inline-block">{{ data.streamer.username }}</h1>
|
||||
</router-link>
|
||||
<p class="text-sm font-bold text-neutral self-end">
|
||||
{{ truncate(data.title, 130) }}
|
||||
|
|
Loading…
Add table
Reference in a new issue