Skip to content

Commit

Permalink
fix: windows rounded left
Browse files Browse the repository at this point in the history
  • Loading branch information
DIYgod committed Jul 30, 2024
1 parent c38bb94 commit bf07c5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/renderer/src/modules/feed-column/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export function FeedColumn({ children }: PropsWithChildren) {

return (
<Vibrancy
className="relative flex h-full flex-col gap-3 pt-2.5"
className="relative flex h-full flex-col gap-3 rounded-l-[12px] pt-2.5"
onClick={useCallback(() => navigateBackHome(), [navigateBackHome])}
>
<div
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/pages/(main)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const FeedResponsiveResizerContainer = ({
<div
className={cn(
"shrink-0",
"absolute inset-y-0 z-10 rounded-l-[12px]",
"absolute inset-y-0 z-10",
!feedColumnShow ? "-translate-x-full" : "",
)}
style={{
Expand Down

0 comments on commit bf07c5e

Please sign in to comment.