Skip to content

Commit e441528

Browse files
Johan BookJohan Book
Johan Book
authored and
Johan Book
committed
fix(web-ui): small styling fixes for guard pages
1 parent 2f18586 commit e441528

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

services/web-ui/src/pages/AuthenticationGuard/AuthenticationGuard.nav.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ export interface AuthenticationGuardNavProps {
99
export function AuthenticationGuardNav({
1010
children,
1111
}: AuthenticationGuardNavProps): React.ReactElement {
12-
return <Box sx={{ height: "100vh" }}>{children}</Box>;
12+
return <Box sx={{ height: "100vh", px: 3 }}>{children}</Box>;
1313
}

services/web-ui/src/pages/ProfileGuard/ProfileGuard.nav.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ interface ProfileGuardNavProps {
99
export function ProfileGuardNav({
1010
children,
1111
}: ProfileGuardNavProps): React.ReactElement {
12-
return <Box sx={{ height: "100vh" }}>{children}</Box>;
12+
return <Box sx={{ height: "100vh", px: 3 }}>{children}</Box>;
1313
}

0 commit comments

Comments
 (0)