Add suggestions by @TheDrone7

This commit is contained in:
BlossomiShymae
2024-10-09 00:35:16 -05:00
parent 18bb222a41
commit 1e2d376337

View File

@@ -1,4 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import type { Skin } from '~/core/models';
const route = useRoute(); const route = useRoute();
const id = route.params.id as unknown; const id = route.params.id as unknown;
@@ -65,7 +67,7 @@ const swapCurrentSkin = (id: number) => {
</div> </div>
</div> </div>
<div> <div>
<h5 class="text-light"><span class="fw-bold me-2">i</span> {{ champion.passive.name}}</h5> <h5 class="text-light"><span class="fw-bold me-2 text-uppercase">p</span> {{ champion.passive.name}}</h5>
<small v-html="champion.passive.description"></small> <small v-html="champion.passive.description"></small>
</div> </div>
</div> </div>
@@ -77,7 +79,7 @@ const swapCurrentSkin = (id: number) => {
</div> </div>
</div> </div>
<div> <div>
<h5 class="text-light"><span class="fw-bold me-2">{{ spell.spellKey }}</span> {{ spell.name }}</h5> <h5 class="text-light"><span class="fw-bold me-2 text-uppercase">{{ spell.spellKey }}</span> {{ spell.name }}</h5>
<small v-html="spell.description"></small> <small v-html="spell.description"></small>
</div> </div>
</div> </div>