add effect overlay target

pull/1749/head
Ben Phelps 10 months ago
parent 9d10de9949
commit 09d44da087

@ -1,7 +1,8 @@
export default function Container({ children }) {
export default function Container({ children, className = "" }) {
return (
<div>
{children}
<div className={`absolute top-0 right-0 bottom-0 left-0 overflow-clip pointer-events-none ${className}`} />
<div className="h-[68px] overflow-clip" />
</div>
);

Loading…
Cancel
Save