Fix Render
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
Chaoscaot 2024-12-21 16:06:23 +01:00
Ursprung 41a3b75c97
Commit 8c6f5f5729
2 geänderte Dateien mit 4 neuen und 19 gelöschten Zeilen

Datei anzeigen

@ -42,7 +42,7 @@
}
</script>
<div>
<div class="p-3 bg-gray-200 dark:bg-neutral-800 rounded-2xl w-3/4 mx-auto">
<table>
<thead>
<tr class="font-bold border-b">
@ -71,9 +71,3 @@
</tbody>
</table>
</div>
<style lang="scss">
div {
@apply p-3 bg-gray-200 dark:bg-neutral-800 rounded-2xl w-3/4 mx-auto;
}
</style>

Datei anzeigen

@ -48,8 +48,8 @@
}).sort((a, b) => b.points - a.points);
</script>
<div>
<table>
<div class="p-3 bg-gray-200 dark:bg-neutral-800 rounded-2xl w-3/4 mx-auto">
<table class="w-full">
<thead>
<tr class="font-bold border-b">
{#each Array(rows) as i (i)}
@ -70,12 +70,3 @@
</tbody>
</table>
</div>
<style lang="scss">
table {
@apply w-full;
}
div {
@apply p-3 bg-gray-200 dark:bg-neutral-800 rounded-2xl w-3/4 mx-auto;
}
</style>