Matchups: implemented matchups
All checks were successful
pipeline / lint-and-format (push) Successful in 4m36s
pipeline / build-and-push-images (push) Successful in 1m50s

This commit is contained in:
2026-01-25 00:22:40 +01:00
parent 7a34c16087
commit 8f8fc0f1af
9 changed files with 761 additions and 71 deletions

View File

@@ -185,6 +185,14 @@ function fetchChampionData() {
:tree="lane.builds.tree"
/>
</ClientOnly>
<ClientOnly>
<LazyMatchupSection
v-if="state == 'matchups' && championData.gameCount > 0 && lane?.matchups"
style="margin: auto; margin-top: 40px"
:matchups="lane.matchups"
:champion-id="championId"
/>
</ClientOnly>
<h2
v-if="championData.gameCount == 0"
style="margin: auto; margin-top: 20px; width: fit-content"

View File

@@ -38,6 +38,7 @@
.index-main-content {
flex-direction: column;
margin-top: 5px;
padding-bottom: 100px;
}
.index-champion-selector {
width: 100%;