fix: display version number

This commit is contained in:
2025-05-12 13:42:23 -04:00
parent e6ab5700de
commit d91c90a5c2
7 changed files with 25 additions and 16 deletions

View File

@ -41,7 +41,11 @@
<div class={cn('grid gap-2', className)}>
<Popover.Root>
<Popover.Trigger
class={cn(buttonVariants({ variant: 'input' }), 'bg-based', !value && 'text-subtext')}
class={cn(
buttonVariants({ variant: 'input' }),
'bg-based text-md md:text-sm',
!value && 'text-subtext'
)}
>
<CalendarIcon class="mr-2 size-4" />
{#if value && value.start}

View File

@ -9,7 +9,7 @@
bind:ref
data-slot="tabs-list"
class={cn(
'bg-based inline-flex h-9 w-fit items-center justify-center gap-1 rounded-lg p-[3px]',
'bg-based inline-flex h-11 w-fit items-center justify-center gap-1 rounded-lg p-[3px]',
className
)}
{...restProps}