Skip to content

Commit

Permalink
refactor: further margin and size tweaks (#1301)
Browse files Browse the repository at this point in the history
* refactor: further margin and size tweaks

* refactor: further margin and size tweaks

* Merge branch 'main' into refactor/styles-cleanup
  • Loading branch information
setchy committed Jun 22, 2024
1 parent 4c820e8 commit 2447543
Show file tree
Hide file tree
Showing 6 changed files with 242 additions and 204 deletions.
6 changes: 4 additions & 2 deletions src/components/AccountNotifications.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,10 @@ export const AccountNotifications: FC<IAccountNotifications> = (
)}
onClick={toggleAccountNotifications}
>
<div className="flex gap-3">
<PlatformIcon type={account.platform} size={Size.MEDIUM} />
<div className="flex">
<div className="mr-3 flex items-center justify-center">
<PlatformIcon type={account.platform} size={Size.MEDIUM} />
</div>
<button
type="button"
title="Open Profile"
Expand Down
2 changes: 1 addition & 1 deletion src/components/NotificationRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export const NotificationRow: FC<INotificationRow> = ({
)}
>
<div
className={cn('mr-3 flex w-5 items-center justify-center', iconColor)}
className={cn('mr-3 flex items-center justify-center', iconColor)}
title={notificationTitle}
>
<NotificationIcon
Expand Down
Loading

0 comments on commit 2447543

Please sign in to comment.