Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions resources/js/components/ui/DatePicker/DatePicker.vue
Original file line numberDiff line numberDiff line change
Expand Up@@ -159,7 +159,7 @@ const getInputLabel = (part) => {
<DatePickerAnchor as-child>
<div
:class="[
'flex w-full items-center bg-white uppercase dark:bg-gray-900',
'flex w-full items-center overflow-x-auto overflow-y-hidden bg-white uppercase dark:bg-gray-900',
'border border-gray-300 dark:border-gray-700',
'text-gray-600 dark:text-gray-300',
'shadow-ui-sm not-prose h-10 rounded-lg px-2 disabled:shadow-none',
Expand DownExpand Up@@ -210,7 +210,7 @@ const getInputLabel = (part) => {
:additional-timezones="additionalTimezones"
side="top"
>
<Text class="text-gray-600 dark:text-gray-400 me-1" size="xs" :text="timeZoneLabel" />
<Text class="text-gray-600! dark:text-gray-400! ms-2.5 me-1" size="xs" :text="timeZoneLabel" />
</TimezoneHoverCard>
<Button
v-if="clearable && !readOnly"
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -137,7 +137,7 @@ const hoverCardDate = computed(() => {
<DateRangePickerField v-slot="{ segments }" class="w-full">
<div
:class="[
'flex items-center w-full bg-white dark:bg-gray-900',
'flex items-center w-full overflow-x-auto overflow-y-hidden bg-white dark:bg-gray-900',
'border border-gray-300 dark:border-gray-700',
'leading-[1.375rem] text-gray-600 dark:text-gray-300',
'shadow-ui-sm not-prose h-10 rounded-lg py-2 px-2.5 disabled:shadow-none',
Expand DownExpand Up@@ -189,7 +189,7 @@ const hoverCardDate = computed(() => {
:additional-timezones="additionalTimezones"
side="top"
>
<Text class="text-gray-600 dark:text-gray-400 me-1" size="xs" :text="timeZoneLabel" />
<Text class="text-gray-600! dark:text-gray-400! ms-2.5 me-1" size="xs" :text="timeZoneLabel" />
</TimezoneHoverCard>
<Button v-if="!readOnly" @click="emit('update:modelValue', null)" variant="subtle" size="sm" icon="x" class="-me-2" :disabled="disabled" />
</div>
Expand Down
Loading