Álvaro Valenzuela Valdes commited on
Commit
cc0d2b2
·
1 Parent(s): 351fa49

fix: Enabled vertical scrolling in sidebar navigation

Browse files
Files changed (1) hide show
  1. frontend/components/Sidebar.tsx +1 -1
frontend/components/Sidebar.tsx CHANGED
@@ -54,7 +54,7 @@ export default function Sidebar({ tabs, activeTab, onTabSelect, status, lang }:
54
  {isExpanded && <h1 className="text-xl font-bold tracking-tight text-white whitespace-nowrap animate-in fade-in duration-500">AndesOps</h1>}
55
  </div>
56
 
57
- <nav className="flex-1 flex flex-col gap-2 overflow-hidden">
58
  {tabs.map((tab) => {
59
  const isActive = activeTab === tab;
60
  const { label, icon } = getTabLabel(tab);
 
54
  {isExpanded && <h1 className="text-xl font-bold tracking-tight text-white whitespace-nowrap animate-in fade-in duration-500">AndesOps</h1>}
55
  </div>
56
 
57
+ <nav className="flex-1 flex flex-col gap-2 overflow-y-auto custom-scrollbar pr-1">
58
  {tabs.map((tab) => {
59
  const isActive = activeTab === tab;
60
  const { label, icon } = getTabLabel(tab);