Skip to content

Commit 7ca3319

Browse files
authored
fix: hot label positioning (#5033)
1 parent d061e46 commit 7ca3319

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/shared/src/components/HorizontalScroll/HorizontalScrollHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export function HorizontalScrollHeader({
5252
canScroll,
5353
}: HorizontalScrollHeaderProps): ReactElement {
5454
return (
55-
<div className="mx-4 mb-4 flex min-h-10 w-auto flex-row items-center justify-between laptop:mx-0 laptop:w-full">
55+
<div className="mx-4 flex min-h-10 w-auto flex-row items-center justify-between laptop:mx-0 laptop:w-full">
5656
<HorizontalScrollTitle {...title} />
5757
{canScroll && (
5858
<div className="hidden flex-row items-center gap-3 tablet:flex">

packages/shared/src/components/feeds/FeedContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ export const FeedContainer = ({
318318
!isLaptop && (isExplorePopular || isExploreLatest) && 'mt-4',
319319
isSearch && !shouldUseListFeedLayout && !isAnyExplore && 'mt-8',
320320
isHorizontal &&
321-
'no-scrollbar snap-x snap-mandatory grid-flow-col overflow-x-scroll scroll-smooth py-2',
321+
'no-scrollbar snap-x snap-mandatory grid-flow-col overflow-x-scroll scroll-smooth py-2 pt-5',
322322
gapClass({
323323
isList,
324324
isFeedLayoutList: shouldUseListFeedLayout,

0 commit comments

Comments
 (0)