This commit is contained in:
cirroskais 2024-09-06 14:48:21 -04:00
parent b96a310444
commit 7905e25b35
No known key found for this signature in database
GPG key ID: 5FC73EBF2678E33D
2 changed files with 6 additions and 5 deletions

View file

@ -13,6 +13,7 @@
], ],
"staff": [ "staff": [
{ "steamid": "76561198824911329", "color": "#c4bef3" }, { "steamid": "76561198824911329", "color": "#c4bef3" },
{ "steamid": "76561198988489476", "color": "#490b7f" },
{ "steamid": "76561198112219274", "color": "#e21884", "_comment": "lilyith" }, { "steamid": "76561198112219274", "color": "#e21884", "_comment": "lilyith" },
{ "steamid": "76561198107316900", "color": "#e21884", "_comment": "alexcat" }, { "steamid": "76561198107316900", "color": "#e21884", "_comment": "alexcat" },
{ "steamid": "76561198101686025", "color": "#ffe23f", "_comment": "bluddfang" }, { "steamid": "76561198101686025", "color": "#ffe23f", "_comment": "bluddfang" },

View file

@ -5,13 +5,13 @@
</script> </script>
{#await steam(steamid)} {#await steam(steamid)}
<div class="flex flex-col w-20"> <div class="flex flex-col w-[4.5rem]">
<div class="w-20 h-20" /> <div class="w-[4.5rem] h-[4.5rem]" />
<p class="text-center" style="color: {color};">.</p> <p class="text-center" style="color: {color};">.</p>
</div> </div>
{:then { name, avatar }} {:then { name, avatar }}
<div class="flex flex-col w-20"> <div class="flex flex-col w-[4.5rem]">
<img class="w-20 h-20 rounded-full border-[3px]" style="border-color: {color};" src={avatar} alt="" /> <img class="w-[4.5rem] h-[4.5rem] rounded-full border-[3px]" style="border-color: {color};" src={avatar} alt="" />
<p class="text-sm font-bold text-center overflow-clip" style="color: {color};">{name}</p> <p class="pt-0.5 text-xs font-bold text-center overflow-clip" style="color: {color};">{name}</p>
</div> </div>
{/await} {/await}