Latest changes - Normalizing cart

This commit is contained in:
Bel Curcio
2021-06-02 16:12:58 -03:00
parent c1535cb8a6
commit 1b80b53b82
22 changed files with 237 additions and 264 deletions

View File

@@ -34,7 +34,7 @@ const Sidebar: FC<Props> = ({ children, open = false, onClose }) => {
return (
<Portal>
{open ? (
{open && (
<div className={s.root} ref={ref}>
<div className="absolute inset-0 overflow-hidden">
<div
@@ -48,7 +48,7 @@ const Sidebar: FC<Props> = ({ children, open = false, onClose }) => {
</section>
</div>
</div>
) : null}
)}
</Portal>
)
}