Skip to content

Commit 2447543

Browse files
authored
refactor: further margin and size tweaks (#1301)
* refactor: further margin and size tweaks * refactor: further margin and size tweaks * Merge branch 'main' into refactor/styles-cleanup
1 parent 4c820e8 commit 2447543

File tree

6 files changed

+242
-204
lines changed

6 files changed

+242
-204
lines changed

src/components/AccountNotifications.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,10 @@ export const AccountNotifications: FC<IAccountNotifications> = (
7474
)}
7575
onClick={toggleAccountNotifications}
7676
>
77-
<div className="flex gap-3">
78-
<PlatformIcon type={account.platform} size={Size.MEDIUM} />
77+
<div className="flex">
78+
<div className="mr-3 flex items-center justify-center">
79+
<PlatformIcon type={account.platform} size={Size.MEDIUM} />
80+
</div>
7981
<button
8082
type="button"
8183
title="Open Profile"

src/components/NotificationRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export const NotificationRow: FC<INotificationRow> = ({
117117
)}
118118
>
119119
<div
120-
className={cn('mr-3 flex w-5 items-center justify-center', iconColor)}
120+
className={cn('mr-3 flex items-center justify-center', iconColor)}
121121
title={notificationTitle}
122122
>
123123
<NotificationIcon

0 commit comments

Comments
 (0)