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
4 changes: 2 additions & 2 deletions src/app/features/auth/components/AuthLogo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export default function AuthLogo({ text }: AuthLogoProps): JSX.Element {
const isDark = resolvedTheme === 'dark'

return (
<div className="flex w-[230px] flex-col items-center justify-center gap-12">
<Link className="relative block h-[250px] w-full" href="/">
<div className="flex w-230 flex-col items-center justify-center gap-12">
<Link className="relative block h-250 w-full mobile-wide:h-150" href="/">
<Image
src={isDark ? '/images/logo-dark.svg' : '/images/logo-light.svg'}
alt="CoPlan 로고"
Expand Down
2 changes: 1 addition & 1 deletion src/app/features/landing/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import GithubIcon from './GithubIcon'

export default function Footer() {
return (
<footer className="flex h-236 items-center justify-between gap-32 px-140 mobile-wide:flex-col mobile-wide:justify-around tablet-wide:h-100 tablet-wide:flex-row tablet-wide:justify-between tablet-wide:px-40">
<footer className="flex h-236 items-center justify-between gap-32 px-140 mobile-wide:flex-col mobile-wide:justify-center mobile-wide:gap-30 tablet-wide:h-100 tablet-wide:flex-row tablet-wide:justify-between tablet-wide:px-40">
<p className="font-bold mobile-wide:text-12">@Coplan - 2025</p>
<GithubIcon />
</footer>
Expand Down
2 changes: 1 addition & 1 deletion src/app/features/mypage/components/ProfileImageUpload.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default function ProfileImageUpload({
}

return (
<div className="relative size-182 basis-182">
<div className="relative size-182 basis-182 mobile-wide:size-140 mobile-wide:basis-140">
{/* 파일 선택 트리거 역할 */}
<label
htmlFor="userProfile"
Expand Down
2 changes: 1 addition & 1 deletion src/app/mypage/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function MypageLayout({
<>
<Sidebar />
{/* Sidebar의 반응형이 적용 될 경우 변경 예정 */}
<div className="pl-300 mobile:pl-67 tablet:pl-160">
<div className="pl-300 mobile-wide:pl-67 tablet-wide:pl-160">
<Header />
<main className="BG-gray h-screen">{children}</main>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/mypage/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import ProfileEditForm from '@mypage/components/ProfileEditForm'
export default function Mypage() {
return (
<>
<div className="p-20">
<div className="p-20 mobile-wide:p-10">
{/* 헤더 영역 */}
<section className="flex flex-col gap-16">
{/* 뒤로 가기 버튼 */}
Expand Down
Loading