mirror of
https://github.com/zadam/trilium.git
synced 2026-05-07 04:26:17 +02:00
client/fluid container: fix a bug
This commit is contained in:
@@ -35,7 +35,9 @@ export function FluidWrapper({className, breakpoints, children}: FluidWrapperPar
|
||||
return () => observer.disconnect();
|
||||
}, [sortedBreakpoints]);
|
||||
|
||||
return <div ref={ref} className={clsx("fluid-container", className, activeBreakpoint)}>
|
||||
{children}
|
||||
return <div ref={ref} className="fluid-container">
|
||||
<div className={clsx(className, activeBreakpoint)}>
|
||||
{children}
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
Reference in New Issue
Block a user