Skip to content

Commit

Permalink
chore: minimize accessibility effects of SearchBar
Browse files Browse the repository at this point in the history
  • Loading branch information
pfferrari committed Aug 9, 2023
1 parent f39f42e commit 44ea611
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/app-elements/src/ui/composite/SearchBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function SearchBar({
data-test-id='SearchBar'
className={cn(
'rounded relative w-full bg-gray-100',
'focus-within:shadow-inputfocus focus-within:bg-white',
// 'focus-within:shadow-inputfocus focus-within:bg-white',
className
)}
{...rest}
Expand All @@ -80,7 +80,7 @@ function SearchBar({
className={cn(
'px-12 py-2 bg-transparent font-medium w-full transition placeholder:text-gray-400',
'shadow-none !outline-0 !border-0 !ring-0',
'!focus:shadow-none !active:shadow-none'
'!focus:shadow-none !active:shadow-none focus:caret-primary'
)}
data-test-id='SearchBar-input'
placeholder={placeholder}
Expand Down

0 comments on commit 44ea611

Please sign in to comment.