Skip to content

Commit

Permalink
update focus color
Browse files Browse the repository at this point in the history
  • Loading branch information
kencrim committed Oct 19, 2023
1 parent 15a2736 commit 36bb753
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TextInput/TextInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
data-testId="input-container"
:class="[
'bg-white h-11 px-3 py-2 rounded flex items-center gap-2 border border-gray-200',
{ 'hover:border-gray-300 focus-within:border-blue-500 focus-within:hover:border-blue-500 focus-within:outline-black focus-within:outline-offset-1 focus-within:outline-1': !disabled && !readonly },
{ 'hover:border-gray-300 focus-within:border-[#2D2D2F] focus-within:hover:border-[#2D2D2F] focus-within:outline-black focus-within:outline-offset-1 focus-within:outline-1': !disabled && !readonly },
{ '!border-green-700 !bg-green-50': success },
{ '!border-red-600 !bg-red-50': error },
{ '!bg-gray-50' : disabled || readonly || withCopyButton },
Expand Down

0 comments on commit 36bb753

Please sign in to comment.