Skip to content

Commit

Permalink
fix: trending drawer overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kovsu committed Oct 17, 2024
1 parent 737d40c commit c74f2b2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/renderer/src/components/ui/scroll-area/ScrollArea.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,10 @@ export const ScrollArea = React.forwardRef<
<Viewport
ref={setViewportRef}
onWheel={stopPropagation}
className={cn(flex ? "[&>div]:!flex [&>div]:!flex-col" : "", viewportClassName)}
className={cn(
flex ? "[&>div]:!flex [&>div]:!flex-col" : "[&>div]:!block",
viewportClassName,
)}
mask={mask}
>
{children}
Expand Down

0 comments on commit c74f2b2

Please sign in to comment.