Skip to content

Commit

Permalink
fix responsive issue in sidebar (#6547)
Browse files Browse the repository at this point in the history
  • Loading branch information
khavinshankar committed Nov 8, 2023
1 parent a3b7318 commit c8e5c94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Components/Common/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ const StatelessSidebar = ({

return (
<nav
className={`group flex h-screen flex-col bg-primary-800 py-3 md:py-5 ${
className={`group flex h-full flex-col bg-primary-800 py-3 md:py-5 ${
shrinked ? "w-14" : "w-60"
} transition-all duration-300 ease-in-out ${
isOverflowVisible && shrinked
Expand All @@ -134,7 +134,7 @@ const StatelessSidebar = ({
/>
</Link>
<div className="h-3" /> {/* flexible spacing */}
<div className="relative mb-4 flex h-full flex-col md:mb-0">
<div className="relative flex h-full flex-col">
<div className="relative flex flex-1 flex-col md:flex-none">
<div
ref={indicatorRef}
Expand Down

0 comments on commit c8e5c94

Please sign in to comment.