feat: fullscreen
This commit is contained in:
parent
faef57738c
commit
5f4de7c987
|
|
@ -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>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue