10 lines
412 B
TypeScript
Raw Normal View History

2023-10-13 22:31:56 -04:00
import { ReactElement } from "react";
export default function ModalLayout({ children }: { children: ReactElement }) {
return (
2023-10-14 19:03:44 -04:00
<div className="z-overlay fixed inset-y-[10px] left-[10px] right-[10px] overflow-hidden overflow-y-auto rounded-lg border bg-background px-4 sm:left-[calc(10px_+_var(--sidebar-closed-width))] xl:left-[calc(10px_+_var(--sidebar-open-width))]">
2023-10-13 22:31:56 -04:00
{children}
</div>
);
}