From 4e77002b05372d72256450796c8197565c0b2f84 Mon Sep 17 00:00:00 2001 From: Agustina Carrion <agus.carrion@gmail.com> Date: Tue, 4 Apr 2023 17:08:29 +0200 Subject: [PATCH] fix: remove h-full in aside --- src/components/Sidebar/SidebarContainer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Sidebar/SidebarContainer.tsx b/src/components/Sidebar/SidebarContainer.tsx index d647e47..2e0b308 100644 --- a/src/components/Sidebar/SidebarContainer.tsx +++ b/src/components/Sidebar/SidebarContainer.tsx @@ -7,7 +7,7 @@ interface Props { const SidebarContainer: React.FC<Props> = ({ className, children, clickable = true }) => { return ( <aside - className={`fcmap-w-full md:fcmap-w-[336px] fcmap-h-full fcmap-overflow-y-auto fcmap-z-10 fcmap-shadow-lg ${ + className={`fcmap-w-full md:fcmap-w-[336px] fcmap-overflow-y-auto fcmap-z-10 fcmap-shadow-lg ${ clickable ? 'fcmap-pointer-events-auto' : 'fcmap-pointer-events-none' } ${className ?? ''}`} > -- GitLab