Skip to content

Commit

Permalink
prevent sidebar wrapping (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigoncalves authored Sep 16, 2024
1 parent e911750 commit 67a6bf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/LeftSidebar/LeftSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { CopyrightInfo } from './CopyrightInfo'

export const LeftSidebar = ({ activeButton = 'communities', onSidebarButtonClick }: LeftSidebarProps) => {
return (
<aside className="min-h-screen w-[327px] border border-input-bg px-[32px] border-b-0 flex flex-col justify-between ">
<aside className="min-h-screen w-[327px] min-w-[234px] border border-input-bg px-8 border-b-0 flex flex-col justify-between whitespace-nowrap">
<div>
<Logo className="mb-[56px] mt-[47px]" />
<SidebarButtons onClick={onSidebarButtonClick} activeButton={activeButton} />
Expand Down

0 comments on commit 67a6bf3

Please sign in to comment.