Skip to content

Commit b82f398

Browse files
authored
[6.x] Fix append prepend border in dark mode (#13129)
1 parent 2d92a2e commit b82f398

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resources/js/components/ui/Input/GroupAppend.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const props = defineProps({
99
:class="[
1010
'flex items-center justify-center',
1111
'shadow-ui-sm disabled:shadow-none',
12-
'border border-gray-300 bg-gray-50 text-gray-600 antialiased dark:border-white/10 dark:bg-gray-925 dark:text-gray-300',
12+
'border border-gray-300 bg-gray-50 text-gray-600 antialiased dark:border-gray-700 dark:bg-gray-925 dark:text-gray-300',
1313
'rounded-e-lg px-3 text-sm leading-[1.375rem] shrink-0',
1414
]"
1515
data-ui-input-group-append

resources/js/components/ui/Input/GroupPrepend.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const props = defineProps({
99
:class="[
1010
'flex items-center justify-center',
1111
'shadow-ui-sm disabled:shadow-none',
12-
'border border-gray-300 bg-gray-50 text-gray-600 antialiased dark:border-white/10 dark:bg-gray-950 dark:text-gray-300',
12+
'border border-gray-300 bg-gray-50 text-gray-600 antialiased dark:border-gray-700 dark:bg-gray-950 dark:text-gray-300',
1313
'rounded-s-lg px-3 text-sm leading-[1.375rem] shrink-0',
1414
]"
1515
data-ui-input-group-prepend

0 commit comments

Comments
 (0)