Skip to content

Commit

Permalink
feat: add bottom margin to each detail value
Browse files Browse the repository at this point in the history
  • Loading branch information
ajyey committed Jun 23, 2023
1 parent 4c00994 commit 84afd78
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/pages/popup/components/home/detail/EmailAddress.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function EmailAddress({ emailAddress }: { emailAddress: string | null }) {
>
email
</div>
<div className="ml-2 font-normal text-white text-detailValue">
<div className="ml-2 mb-1 font-normal text-white text-detailValue">
{emailAddress}
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function EmailDescription({
description
</div>
<div
className={`ml-2 font-normal text-detailValue ${descriptionLabelColor}`}
className={`ml-2 mb-1 font-normal text-detailValue ${descriptionLabelColor}`}
>
{descriptionExists ? emailDescription : 'No description set'}
</div>
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 @@ -11,7 +11,7 @@ function EmailDomain({ emailDomain }: { emailDomain: string | null }) {
domain
</div>
<div
className={`ml-2 font-normal text-detailValue ${domainLabelColor}`}
className={`ml-2 mb-1 font-normal text-detailValue ${domainLabelColor}`}
>
{domainExists ? emailDomain : 'No domain set'}
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/popup/components/home/detail/EmailId.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function EmailId({ emailId }: { emailId: string | null }) {
>
ID
</div>
<div className="ml-2 font-normal text-white text-detailValue">
<div className="ml-2 mb-1 font-normal text-white text-detailValue">
{emailId}
</div>
</div>
Expand Down

0 comments on commit 84afd78

Please sign in to comment.