Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/activitypub/src/components/topic-filter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const TopicFilter: React.FC<TopicFilterProps> = ({currentTopic, onTopicChange, e
<div className="relative w-full">
<div
ref={scrollContainerRef}
className="flex w-full max-w-full min-w-0 snap-x snap-mandatory gap-2 overflow-x-auto [-ms-overflow-style:none] [scrollbar-width:none] [&::-webkit-scrollbar]:hidden"
className="flex w-full max-w-full min-w-0 snap-x snap-mandatory [scrollbar-width:none] gap-2 overflow-x-auto [-ms-overflow-style:none] [&::-webkit-scrollbar]:hidden"
onScroll={handleScroll}
>
{filteredTopics.map(({slug, name}) => (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const EmailPreviewModalContent = React.forwardRef<
{headerActions}
</div>
</div>
<div className="flex h-[clamp(0px,calc(100dvh-320px),82vh)] min-h-0 grow flex-col overflow-y-auto [scrollbar-gutter:stable]">
<div className="flex h-[clamp(0px,calc(100dvh-320px),82vh)] min-h-0 grow [scrollbar-gutter:stable] flex-col overflow-y-auto">
{children}
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const EmailPreviewModalContent = React.forwardRef<
{headerActions}
</div>
</div>
<div className="flex min-h-0 grow flex-col overflow-y-auto [scrollbar-gutter:stable]">
<div className="flex min-h-0 grow [scrollbar-gutter:stable] flex-col overflow-y-auto">
{children}
</div>
</div>
Expand Down
Loading
Loading