Skip to content

Commit

Permalink
Replace outline-0 with outline-none
Browse files Browse the repository at this point in the history
  • Loading branch information
mybearworld committed Jun 19, 2024
1 parent 7fbf6ff commit 5dbb991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const Textarea = forwardRef<HTMLTextAreaElement | null, TextareaProps>(
{...{ ...textareaProps, className: undefined }}
onInput={handleInput}
onKeyDown={handleKeyDown}
className="mx-2 h-full max-h-64 grow resize-none overflow-y-auto bg-transparent py-1 outline-0 focus:outline-0 focus-visible:outline-0"
className="mx-2 h-full max-h-64 grow resize-none overflow-y-auto bg-transparent py-1 outline-none"
rows={1}
ref={elementRef}
/>
Expand Down

0 comments on commit 5dbb991

Please sign in to comment.