Updated the FillBlanks exercise and solution to the new design

This commit is contained in:
Tiago Ribeiro
2023-06-18 22:02:48 +01:00
parent 84b0b8ac42
commit 52218ff8b8
7 changed files with 136 additions and 20411 deletions

View File

@@ -16,7 +16,10 @@ export default function Layout({user, children, className}: Props) {
<div className="h-full w-full flex py-4 pb-8 gap-2">
<Sidebar path={window.location.pathname} />
<div
className={clsx("w-5/6 min-h-full h-fit mr-8 bg-white shadow-md rounded-2xl p-12 pb-8 flex flex-col gap-12 relative", className)}>
className={clsx(
"w-5/6 min-h-full h-fit mr-8 bg-white shadow-md rounded-2xl p-12 pb-8 flex flex-col gap-12 relative overflow-hidden",
className,
)}>
{children}
</div>
</div>