Skip to content

Commit

Permalink
fix: make email count text small for cross browser consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
ajyey committed Jun 23, 2023
1 parent 041dc4b commit c994b6d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/popup/components/home/emails/EmailCount.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ interface EmailCountProps {
* @param count The number of emails in the list
*/
const EmailCount: React.FC<EmailCountProps> = ({ count }) => {
return <div className="ml-1 mr-1 text-white font-medium">{count}</div>;
return (
<div className="ml-1 mr-1 text-white font-medium text-sm">{count}</div>
);
};

export default EmailCount;

0 comments on commit c994b6d

Please sign in to comment.