Skip to content

Commit

Permalink
fix: squad post content
Browse files Browse the repository at this point in the history
  • Loading branch information
sshanzel committed Mar 27, 2024
1 parent 4eb328b commit 29eddcd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/shared/src/components/post/SquadPostContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ function SquadPostContent({
className={classNames(
'relative flex-1 flex-col tablet:flex-row tablet:pb-0',
className?.container,
isPostPage && 'pt-6 tablet:pt-0',
)}
hasNavigation={hasNavigation}
>
Expand All @@ -102,7 +101,10 @@ function SquadPostContent({
onboarding: classNames('mb-6', className?.onboarding),
navigation: {
actions: 'ml-auto tablet:hidden',
container: 'mb-6 pt-6',
container: classNames(
'mb-6 pt-6',
isPostPage && 'pt-6 tablet:pt-0',
),
},
}}
isPostPage={isPostPage}
Expand Down

0 comments on commit 29eddcd

Please sign in to comment.