mirror of
https://github.com/MewoLab/AquaDX.git
synced 2026-02-08 11:27:26 +08:00
[+] Add ongeki b55
This commit is contained in:
@@ -231,6 +231,19 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{#if d.user.ratingComposition.best30}
|
||||
<div>
|
||||
<h2>B30</h2>
|
||||
<div class="rating-composition">
|
||||
{#each d.user.ratingComposition.best30.split(",") as map}
|
||||
<div>
|
||||
<MapDetails g={map} meta={allMusics[map.split(":")[0]]} game={game}/>
|
||||
</div>
|
||||
{/each}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
{#if d.user.ratingComposition.best35}
|
||||
<div>
|
||||
<h2>B35</h2>
|
||||
@@ -257,6 +270,19 @@
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
{#if d.user.ratingComposition.recent10}
|
||||
<div>
|
||||
<h2>R10</h2>
|
||||
<div class="rating-composition-2">
|
||||
{#each d.user.ratingComposition.recent10.split(",") as map}
|
||||
<div>
|
||||
<MapDetails g={map} meta={allMusics[map.split(":")[0]]} game={game}/>
|
||||
</div>
|
||||
{/each}
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<div class="recent">
|
||||
<h2>{t('UserHome.RecentScores')}</h2>
|
||||
<div class="scores">
|
||||
@@ -550,4 +576,10 @@
|
||||
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr))
|
||||
gap: $gap
|
||||
|
||||
.rating-composition-2
|
||||
display: grid
|
||||
// 2 columns
|
||||
grid-template-columns: repeat(auto-fill, minmax(290px, 1fr))
|
||||
gap: $gap
|
||||
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user