First logo attempt
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 66 KiB |
@@ -14,7 +14,7 @@ watch(searchText, (newT, oldT) => {
|
|||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<div style="width: fit-content; margin: auto;">
|
<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>
|
||||||
<div class="champion-container" style="margin-top: 20px;">
|
<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()">
|
<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 {
|
.champion-container {
|
||||||
width: 1390px;
|
width: 1390px;
|
||||||
height: 660px;
|
height: auto;
|
||||||
|
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
|
|||||||
@@ -6,5 +6,10 @@
|
|||||||
<Title>BuildPath</Title>
|
<Title>BuildPath</Title>
|
||||||
</Head>
|
</Head>
|
||||||
|
|
||||||
|
<div style="display: flex; width: fit-content; margin: auto; margin-top: 64px; margin-bottom: 64px;">
|
||||||
|
<img width="140" src="~/assets/img/buildpath-high-resolution-logo-transparent.png" />
|
||||||
|
<h1 style="font-weight: 200; align-content: center; font-size: 90px; margin-left: 20px;">BuildPath</h1>
|
||||||
|
</div>
|
||||||
|
|
||||||
<ChampionSelector style="margin-top: 64px;"/>
|
<ChampionSelector style="margin-top: 64px;"/>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Reference in New Issue
Block a user