Skip to content

Commit 84b8604

Browse files
committed
fix(ui): add missing dark class to 404 page, add relative positioning to invite layout
1 parent 4ede522 commit 84b8604

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/sim/app/invite/components/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ interface InviteLayoutProps {
88

99
export default function InviteLayout({ children }: InviteLayoutProps) {
1010
return (
11-
<div className='min-h-screen bg-[#1C1C1C] font-[430] font-season text-[#ECECEC]'>
11+
<div className='relative min-h-screen bg-[#1C1C1C] font-[430] font-season text-[#ECECEC]'>
1212
<header>
1313
<Navbar logoOnly />
1414
</header>

apps/sim/app/not-found.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Navbar from '@/app/(home)/components/navbar/navbar'
44

55
export default function NotFound() {
66
return (
7-
<AuthBackground className='font-[430] font-season'>
7+
<AuthBackground className='dark font-[430] font-season'>
88
<main className='relative flex min-h-full flex-col text-[#ECECEC]'>
99
<header className='shrink-0 bg-[#1C1C1C]'>
1010
<Navbar />

0 commit comments

Comments
 (0)