Skip to content

Commit

Permalink
fix: round left only in electron
Browse files Browse the repository at this point in the history
  • Loading branch information
hyoban committed Sep 19, 2024
1 parent 0c470be commit 2d10811
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/renderer/src/modules/feed-column/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,11 @@ export function FeedColumn({ children, className }: PropsWithChildren<{ classNam

return (
<WindowUnderBlur
className={cn("relative flex h-full flex-col space-y-3 rounded-l-[12px] pt-2.5", className)}
className={cn(
"relative flex h-full flex-col space-y-3 pt-2.5",
window.electron && "rounded-l-[12px]",
className,
)}
onClick={useCallback(() => navigateBackHome(), [navigateBackHome])}
>
<FeedColumnHeader />
Expand Down

0 comments on commit 2d10811

Please sign in to comment.