Skip to content

Commit

Permalink
Fix profile header bottom border missing on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
pdelfan committed Oct 26, 2024
1 parent cbf4f58 commit 3127c56
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default function ProfileHeader(props: Props) {
<ProfileHeaderSkeleton />
)}
{profile && contentFilter && (
<section className="border-skin-base overflow-hidden border-0 md:border-y md:rounded-t-2xl md:border-x">
<section className="border-skin-base overflow-hidden border-0 md:border-y border-b md:rounded-t-2xl md:border-x">
<div className="relative">
{isBlocked || hasBlockedYou ? (
<Image
Expand Down

0 comments on commit 3127c56

Please sign in to comment.