First logo attempt
All checks were successful
pipeline / build-and-push-images (push) Successful in 20s
pipeline / deploy (push) Successful in 6s

This commit is contained in:
2024-11-24 19:57:18 +01:00
parent 068299efa3
commit f4b30e2781
3 changed files with 8 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ watch(searchText, (newT, oldT) => {
<template>
<div>
<div style="width: fit-content; margin: auto;">
<input v-model="searchText" ref="searchBar" class="search-bar" type="text" placeholder="Champion name..."/>
<input v-model="searchText" ref="searchBar" class="search-bar" type="text" placeholder="Search a champion"/>
</div>
<div class="champion-container" style="margin-top: 20px;">
<RouterLink style="margin-left: 5px; margin-right: 5px;" v-for="champion in filteredChampions" :to="'/champion/' + champion.alias.toLowerCase()">
@@ -43,7 +43,7 @@ watch(searchText, (newT, oldT) => {
}
.champion-container {
width: 1390px;
height: 660px;
height: auto;
overflow-x: hidden;
overflow-y: scroll;