Skip to content

Commit f2e267b

Browse files
committed
Fixed suffix border color
1 parent da5ed1a commit f2e267b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

resources/views/components/input.blade.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
@if($prefix ?? false)
2020
<span {{ $prefix->attributes->class([
2121
'form-input inline-flex items-center w-auto rounded-l-md border-r-0',
22-
'text-base leading-none sm:text-sm sm:leading-none text-inherit',
23-
'bg-[var(--input)] border-[var(--border)]',
22+
'text-base leading-none sm:text-sm sm:leading-none',
23+
'bg-[var(--input)] text-[var(--muted-foreground)] border-[var(--border)]',
2424
]) }}>
2525
{{ $prefix }}
2626
</span>
@@ -66,9 +66,9 @@
6666
</div>
6767
@if($suffix ?? false)
6868
<span {{ $suffix->attributes->class([
69-
'form-input inline-flex items-center w-auto rounded-r-md -ml-px',
70-
'text-base leading-none sm:text-sm sm:leading-none text-inherit',
71-
'bg-[var(--input)] border-[var(--border)]',
69+
'form-input inline-flex items-center w-auto rounded-r-md border-l-0',
70+
'text-base leading-none sm:text-sm sm:leading-none',
71+
'bg-[var(--input)] text-[var(--muted-foreground)] border-[var(--border)]',
7272
]) }}>
7373
{{ $suffix }}
7474
</span>

0 commit comments

Comments
 (0)