Skip to content
Closed
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
6 changes: 3 additions & 3 deletions src/app/(service)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ export default function ServiceLayout({
return (
<html lang="ko">
<head>{GTM_ID && <GoogleTagManager gtmId={GTM_ID} />}</head>
<body className={clsx(pretendard.className, 'h-screen w-screen')}>
<body className={clsx(pretendard.className, 'min-h-screen w-screen')}>
<MainProvider>
<PageViewTracker />
<div className="flex h-screen w-full flex-col overflow-hidden">
<div className="flex min-h-screen w-full flex-col overflow-x-auto">
<Header />
<main className="w-full flex-1 overflow-auto">{children}</main>
<main className="w-full flex-1">{children}</main>
</div>
</MainProvider>
</body>
Expand Down
4 changes: 2 additions & 2 deletions src/widgets/home/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ export default async function Header() {
: undefined;

return (
<header className="mx-auto w-[1496px] bg-white px-600 py-[11px] mix-blend-multiply">
<div className="flex w-full items-center justify-between">
<header className="bg-white py-[11px] mix-blend-multiply">
<div className="mx-auto flex w-[1496px] items-center justify-between px-600">
<div className="flex items-center gap-[7.5px] px-[8px] py-[11px]">
<Image src="/icons/logo.svg" alt="Logo" width={18} height={18} />
<Link href="/">
Expand Down
Loading