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

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

fix: removed shadow in sidebar single view

Closes #11

See merge request !14
parents 3ea45309 17491e61
No related branches found
No related tags found
1 merge request!14fix: removed shadow in sidebar single view
......@@ -7,12 +7,12 @@ interface Props {
const SidebarContainer: React.FC<Props> = ({ className, children, clickable = true }) => {
return (
<aside
className={`fcmap-w-full md:fcmap-w-[336px] fcmap-overflow-y-auto fcmap-z-10 fcmap-shadow-lg ${
className={`fcmap-w-full md:fcmap-w-[336px] fcmap-h-full fcmap-overflow-y-auto fcmap-z-10 ${
clickable ? 'fcmap-pointer-events-auto' : 'fcmap-pointer-events-none'
} ${className ?? ''}`}
>
<div
className={`fcmap-w-full fcmap-max-h-full md:sidebar-height fcmap-min-h-min fcmap-bg-white fcmap-box-border fcmap-flex fcmap-flex-col`}
className={`fcmap-shadow-lg fcmap-w-full fcmap-max-h-full md:sidebar-height fcmap-min-h-min fcmap-bg-white fcmap-box-border fcmap-flex fcmap-flex-col`}
>
{children}
</div>
......
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