mirror of
https://codeberg.org/Freedium-cfd/web.git
synced 2026-03-11 09:04:37 +00:00
feat(ReportProblem): hide button label on small screens
This commit is contained in:
parent
57da4b77bc
commit
9d77ca7c08
1 changed files with 2 additions and 2 deletions
|
|
@ -28,7 +28,7 @@
|
|||
<Dialog.Trigger class={buttonVariants({ variant: 'default' })}>
|
||||
<div class="flex items-center space-x-2 text-white">
|
||||
<Icon icon="heroicons:exclamation-triangle-solid" class="size-5" />
|
||||
<span class="text-sm font-medium">Report a problem</span>
|
||||
<span class="hidden text-sm font-medium lg:block">Report a problem</span>
|
||||
</div>
|
||||
</Dialog.Trigger>
|
||||
<form on:submit|preventDefault={handleSubmit}>
|
||||
|
|
@ -99,7 +99,7 @@
|
|||
<Drawer.Trigger class={buttonVariants({ variant: 'default' })}>
|
||||
<div class="flex items-center space-x-2 text-white">
|
||||
<Icon icon="heroicons:exclamation-triangle-solid" class="size-5" />
|
||||
<span class="text-sm font-medium">Report a problem</span>
|
||||
<span class="hidden text-sm font-medium lg:block">Report a problem</span>
|
||||
</div>
|
||||
</Drawer.Trigger>
|
||||
<form on:submit|preventDefault={handleSubmit}>
|
||||
|
|
|
|||
Loading…
Reference in a new issue