add effect overlay target
This commit is contained in:
parent
9d10de9949
commit
09d44da087
1 changed files with 2 additions and 1 deletions
|
@ -1,7 +1,8 @@
|
||||||
export default function Container({ children }) {
|
export default function Container({ children, className = "" }) {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
{children}
|
{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 className="h-[68px] overflow-clip" />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue