mirror of https://github.com/hykilpikonna/AquaDX
[+] B15 in user detail
parent
4c1d501856
commit
5201c5933c
|
@ -234,7 +234,7 @@
|
|||
{#if d.user.ratingComposition.best35}
|
||||
<div>
|
||||
<h2>B35</h2>
|
||||
<div class="b35">
|
||||
<div class="rating-composition">
|
||||
{#each d.user.ratingComposition.best35.split(",") as map}
|
||||
<div>
|
||||
<MapDetails g={map} meta={allMusics[map.split(":")[0]]} game={game}/>
|
||||
|
@ -244,6 +244,19 @@
|
|||
</div>
|
||||
{/if}
|
||||
|
||||
{#if d.user.ratingComposition.best15}
|
||||
<div>
|
||||
<h2>B15</h2>
|
||||
<div class="rating-composition">
|
||||
{#each d.user.ratingComposition.best15.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">
|
||||
|
@ -531,7 +544,7 @@ $gap: 20px
|
|||
content: "+"
|
||||
color: $c-good
|
||||
|
||||
.b35
|
||||
.rating-composition
|
||||
display: grid
|
||||
// 3 columns
|
||||
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr))
|
||||
|
|
Loading…
Reference in New Issue