Make table bar clickable

This commit is contained in:
BlossomiShymae
2024-05-03 08:28:55 -05:00
parent b48d516bbe
commit c6306b073d
4 changed files with 8 additions and 8 deletions

View File

@@ -12,9 +12,9 @@
</tr>
</thead>
<tbody>
<tr v-for="summary in summaries" :key="summary.id">
<tr v-for="summary in summaries" :key="summary.id" style="position: relative;">
<th scope="row">
<NuxtLink class="text-decoration-none text-light" :to="`/champions/overview/${summary.id}`">
<NuxtLink class="text-decoration-none text-light stretched-link" :to="`/champions/overview/${summary.id}`">
{{ summary.id }}
</NuxtLink>
</th>

View File

@@ -13,9 +13,9 @@
</tr>
</thead>
<tbody>
<tr v-for="item in items" :key="item.id">
<tr v-for="item in items" :key="item.id" style="position: relative;">
<th scope="row">
<NuxtLink class="text-decoration-none text-light" :to="`/items/overview/${item.id}`">
<NuxtLink class="text-decoration-none text-light stretched-link" :to="`/items/overview/${item.id}`">
{{ item.id }}
</NuxtLink>
</th>

View File

@@ -15,9 +15,9 @@
</tr>
</thead>
<tbody>
<tr v-for="icon in pages[index]" :key="icon.id">
<tr v-for="icon in pages[index]" :key="icon.id" style="position: relative;">
<th scope="row">
<NuxtLink class="text-decoration-none text-light" :to="`/summoner-icons/overview/${icon.id}`">
<NuxtLink class="text-decoration-none text-light stretched-link" :to="`/summoner-icons/overview/${icon.id}`">
{{ icon.id }}
</NuxtLink>
</th>

View File

@@ -15,9 +15,9 @@
</tr>
</thead>
<tbody>
<tr v-for="skin in pages[index]" :key="skin.id">
<tr v-for="skin in pages[index]" :key="skin.id" style="position: relative;">
<th scope="row">
<NuxtLink class="text-decoration-none text-light" :to="`/ward-skins/overview/${skin.id}`">
<NuxtLink class="text-decoration-none text-light stretched-link" :to="`/ward-skins/overview/${skin.id}`">
{{ skin.id }}
</NuxtLink>
</th>