Skip to content

Commit

Permalink
fix: allow users to click input when populated, closes #4582
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-watters committed Nov 28, 2023
1 parent 97854b0 commit 222a854
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/components/text-input-field.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export function TextInputField({
borderRadius="sm"
className={css({
'& :has(:focus)::before': {
border: '2px solid #bfc6ff',
border: '1px solid green',
},
})}
cursor="text"
Expand Down Expand Up @@ -124,6 +124,7 @@ export function TextInputField({
spellCheck="false"
textStyle="body.02"
width="100%"
zIndex={1}
{...field}
onBlur={e => {
onBlur?.();
Expand Down

0 comments on commit 222a854

Please sign in to comment.