Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import TestPage from './pages/TestPage';
import ComparePage from './pages/ComparePage';
import TestResultPage from './pages/TestResultPage';
import MainPage from './pages/MainPage';
import Footer from './components/common/Footer';
import ServiceGuidePage from './pages/ServiceGuidePage';

const MainLayout = () => {
Expand All @@ -21,7 +20,6 @@ const MainLayout = () => {
<div className=" min-h-screen flex flex-col">
<main style={{ minHeight: 'calc(100vh - 50px - 80px)' }}>
<Outlet />
<Footer />
</main>
</div>
</>
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/common/Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const Modal: React.FC<ModalProps> = ({
{isOpen && (
<motion.div
key="backdrop"
className="fixed left-1/2 top-0 bottom-0 -translate-x-1/2 w-full max-w-[600px] bg-black/50 flex justify-center items-center z-50"
className="fixed left-1/2 top-0 bottom-0 -translate-x-1/2 w-full max-w-[600px] bg-black/50 flex justify-center items-center z-100"
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
Expand Down
Loading