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>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<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">
|
<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 }}
|
{{ summary.id }}
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
</th>
|
</th>
|
||||||
|
|||||||
@@ -13,9 +13,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<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">
|
<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 }}
|
{{ item.id }}
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
</th>
|
</th>
|
||||||
|
|||||||
@@ -15,9 +15,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<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">
|
<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 }}
|
{{ icon.id }}
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
</th>
|
</th>
|
||||||
|
|||||||
@@ -15,9 +15,9 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<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">
|
<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 }}
|
{{ skin.id }}
|
||||||
</NuxtLink>
|
</NuxtLink>
|
||||||
</th>
|
</th>
|
||||||
|
|||||||
Reference in New Issue
Block a user