mirror of
https://github.com/BlossomiShymae/clean-cuts.git
synced 2025-12-06 18:20:47 +01:00
Make table bar clickable
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user