diff options
author | mat <github@matdoes.dev> | 2022-12-15 18:22:09 -0600 |
---|---|---|
committer | mat <github@matdoes.dev> | 2022-12-15 18:22:09 -0600 |
commit | 054fe6ddee1ecbbf336c1ec9fbce08ebd0a54ebd (patch) | |
tree | ebcbebfe4948cbcf72f8d0c644a8f37714867754 /src/lib/sections/StatList.svelte | |
parent | 925ad2bfff17f8d9381731fb0050936dcd7e0a72 (diff) | |
download | skyblock-stats-054fe6ddee1ecbbf336c1ec9fbce08ebd0a54ebd.tar.gz skyblock-stats-054fe6ddee1ecbbf336c1ec9fbce08ebd0a54ebd.tar.bz2 skyblock-stats-054fe6ddee1ecbbf336c1ec9fbce08ebd0a54ebd.zip |
fix mayor skin + move sections dir
Diffstat (limited to 'src/lib/sections/StatList.svelte')
-rw-r--r-- | src/lib/sections/StatList.svelte | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/src/lib/sections/StatList.svelte b/src/lib/sections/StatList.svelte deleted file mode 100644 index 38604d7..0000000 --- a/src/lib/sections/StatList.svelte +++ /dev/null @@ -1,48 +0,0 @@ -<!-- - @component - - A sorted list of a user's stats, with the total sometimes being at the top. ---> -<script lang="ts"> - import { cleanId, millisecondsToTime } from '$lib/utils' - import type { StatItem } from '$lib/APITypes' - - export let stats: StatItem[] -</script> - -<ul> - {#each stats.sort((a, b) => b.value - a.value) as stat} - <li class:total-stat={stat.categorizedName === 'total'}> - <span class="stat-name">{cleanId(stat.categorizedName)}:</span> - <span class="stat-value"> - {#if stat.unit === 'time'} - {millisecondsToTime(stat.value)} - {:else} - {stat.value.toLocaleString()} - {/if} - </span> - </li> - {/each} -</ul> - -<style> - .total-stat .stat-name { - color: var(--theme-darker-text); - } - .total-stat .stat-value { - font-weight: bold; - } - - .total-stat { - list-style-type: none; - padding: 0 0 0.5em 0; - right: 1em; - } - li { - position: relative; - } - ul { - margin-top: 0.5em; - padding-left: 1em; - } -</style> |