Skip to content

Commit

Permalink
style: fix the profile item align center (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangmo8 committed Sep 20, 2024
1 parent 039dd3d commit e93831e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/renderer/src/modules/profile/user-profile-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,11 @@ const SubscriptionItem: FC<{
className={cn("group relative", isLoose ? "border-b py-5" : "py-2")}
data-feed-id={subscription.feedId}
>
<a className="flex flex-1 cursor-default" href={subscription.feeds.siteUrl!} target="_blank">
<a
className="flex flex-1 cursor-default items-center"
href={subscription.feeds.siteUrl!}
target="_blank"
>
<FeedIcon feed={subscription.feeds} size={22} className="mr-3" />
<div
className={cn(
Expand Down

0 comments on commit e93831e

Please sign in to comment.