feat: fullscreen

This commit is contained in:
Nevo David 2025-12-29 22:20:16 +07:00
parent faef57738c
commit 5f4de7c987
1 changed files with 4 additions and 3 deletions

View File

@ -1,11 +1,12 @@
'use client';
import { StandaloneModal } from '@gitroom/frontend/components/standalone-modal/standalone.modal';
import { usePathname } from 'next/navigation';
export default async function Modal() {
return (
<div className="text-textColor h-screen w-screen">
<StandaloneModal />
<div className="w-screen h-screen overflow-hidden bg-black">
<div className="text-textColor h-[calc(100vh+80px)] w-[calc(100vw+80px)] -m-[40px]">
<StandaloneModal />
</div>
</div>
);
}