Skip to content
Snippets Groups Projects
Commit 3ea45309 authored by Moritz Stückler's avatar Moritz Stückler :cowboy:
Browse files

Merge branch 'fix/sidebar-singleview' into 'main'

fix: remove h-full in aside

See merge request !13
parents dc14d8bd 4e77002b
No related branches found
No related tags found
1 merge request!13fix: remove h-full in aside
...@@ -7,7 +7,7 @@ interface Props { ...@@ -7,7 +7,7 @@ interface Props {
const SidebarContainer: React.FC<Props> = ({ className, children, clickable = true }) => { const SidebarContainer: React.FC<Props> = ({ className, children, clickable = true }) => {
return ( return (
<aside <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' clickable ? 'fcmap-pointer-events-auto' : 'fcmap-pointer-events-none'
} ${className ?? ''}`} } ${className ?? ''}`}
> >
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment