Skip to content

Commit

Permalink
feat: remove outline when input is active for domain and description
Browse files Browse the repository at this point in the history
  • Loading branch information
ajyey committed Jun 24, 2023
1 parent fa606c0 commit cd9f36f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function EmailDescription({
>
{isEditing ? (
<input
className="bg-transparent text-white w-full"
className="bg-transparent text-white w-[98%] focus:outline-none"
type="text"
value={editedDescription || ''}
onChange={handlDescriptionChange}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/popup/components/home/detail/EmailDomain.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function EmailDomain({
>
{isEditing ? (
<input
className="bg-transparent text-white w-full"
className="bg-transparent text-white w-[98%] focus:outline-none"
type="text"
value={editedDomain || ''}
onChange={handleDomainChange}
Expand Down

0 comments on commit cd9f36f

Please sign in to comment.