App: Add shadows to buttons (except for the header)

This commit is contained in:
2025-01-27 19:44:03 +01:00
parent 986a49377b
commit ec75f97ee5
5 changed files with 39 additions and 15 deletions

View File

@ -100,7 +100,7 @@
</script>
<div class="pb-2">
<Button width="w-full" color="tertiary" onclick={create_driver_handler}>
<Button width="w-full" color="tertiary" onclick={create_driver_handler} shadow>
<span class="font-bold">Create New Driver</span>
</Button>
</div>

View File

@ -72,7 +72,7 @@
</script>
<div class="pb-2">
<Button width="w-full" color="tertiary" onclick={create_race_handler}>
<Button width="w-full" color="tertiary" onclick={create_race_handler} shadow>
<span class="font-bold">Create New Race</span>
</Button>
</div>

View File

@ -129,7 +129,7 @@
</script>
<div class="pb-2">
<Button width="w-full" color="tertiary" onclick={create_substitution_handler}>
<Button width="w-full" color="tertiary" onclick={create_substitution_handler} shadow>
<span class="font-bold">Create New Substitution</span>
</Button>
</div>

View File

@ -59,7 +59,7 @@
</script>
<div class="pb-2">
<Button width="w-full" color="tertiary" onclick={create_team_handler}>
<Button width="w-full" color="tertiary" onclick={create_team_handler} shadow>
<span class="font-bold">Create New Team</span>
</Button>
</div>