All: Replace <b> with <span class="font-bold">

This commit is contained in:
2025-01-27 19:38:08 +01:00
parent 8dc9675d84
commit 36c2789304
8 changed files with 9 additions and 9 deletions

View File

@ -132,7 +132,7 @@
disabled={disable_inputs}
required={require_inputs}
>
<svelte:fragment slot="message"><b>Upload Headshot</b></svelte:fragment>
<svelte:fragment slot="message"><span class="font-bold">Upload Headshot</span></svelte:fragment>
</FileDropzone>
<!-- Save/Delete buttons -->

View File

@ -169,7 +169,7 @@
disabled={disable_inputs}
required={require_inputs}
>
<svelte:fragment slot="message"><b>Upload Pictogram</b></svelte:fragment>
<svelte:fragment slot="message"><span class="font-bold">Upload Pictogram</span></svelte:fragment>
</FileDropzone>
<!-- Save/Delete buttons -->

View File

@ -108,7 +108,7 @@
disabled={disable_inputs}
required={require_inputs}
>
<svelte:fragment slot="message"><b>Upload Banner</b></svelte:fragment>
<svelte:fragment slot="message"><span class="font-bold">Upload Banner</span></svelte:fragment>
</FileDropzone>
<!-- Logo upload -->
@ -123,7 +123,7 @@
>
<svelte:fragment slot="message">
<div class="inline-flex flex-nowrap items-center gap-2">
<b>Upload Logo</b>
<span class="font-bold">Upload Logo</span>
<LazyImage
src={team?.logo_url ?? logo_template}
id="update_team_logo_preview_{team?.id ?? 'create'}"

View File

@ -225,7 +225,7 @@
name="avatar"
onchange={get_avatar_preview_event_handler("user_avatar_preview")}
>
<svelte:fragment slot="message"><b>Upload Avatar</b></svelte:fragment>
<svelte:fragment slot="message"><span class="font-bold">Upload Avatar</span></svelte:fragment>
</FileDropzone>
<div class="flex justify-end gap-2">
<Button

View File

@ -101,7 +101,7 @@
<div class="pb-2">
<Button width="w-full" color="tertiary" onclick={create_driver_handler}>
<b>Create New Driver</b>
<span class="font-bold">Create New Driver</span>
</Button>
</div>
{#await data.drivers then drivers}

View File

@ -73,7 +73,7 @@
<div class="pb-2">
<Button width="w-full" color="tertiary" onclick={create_race_handler}>
<b>Create New Race</b>
<span class="font-bold">Create New Race</span>
</Button>
</div>
{#await data.races then races}

View File

@ -130,7 +130,7 @@
<div class="pb-2">
<Button width="w-full" color="tertiary" onclick={create_substitution_handler}>
<b>Create New Substitution</b>
<span class="font-bold">Create New Substitution</span>
</Button>
</div>
{#await data.substitutions then substitutions}

View File

@ -60,7 +60,7 @@
<div class="pb-2">
<Button width="w-full" color="tertiary" onclick={create_team_handler}>
<b>Create New Team</b>
<span class="font-bold">Create New Team</span>
</Button>
</div>
<Table data={data.teams} columns={teams_columns} handler={teams_handler} />