Skip to content

Commit

Permalink
HOTFIX: 레이아웃 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yeyounging committed Nov 25, 2024
1 parent 7ded1ff commit 757a4e9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/home/sg-activity/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function SGactivityLayout({
<div className="overflow-hidden w-full font-pretendard">
<Script
type="text/javascript"
src={`https://dapi.kakao.com/v2/maps/sdk.js?appkey=eacc39192beeb6795003897bf2fc9471&libraries=services`}
src="https://dapi.kakao.com/v2/maps/sdk.js?appkey=eacc39192beeb6795003897bf2fc9471&libraries=services"
strategy="beforeInteractive"
/>
{children}
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function Home() {
}, [])

return (
<div className="flex justify-center items-center w-screen h-screen">
<div className="flex justify-center items-center h-screen">
<motion.div
className="relative w-full h-full bg-primary_foundation-100"
initial={{ opacity: 1 }}
Expand Down
2 changes: 1 addition & 1 deletion src/components/ui/FooterButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default function FooterButtons({ className }: { className?: string }) {
return (
<div
className={cn(
'fixed w-full flex justify-center gap-12 bg-white pt-10 pb-40',
'w-full flex justify-center gap-12 bg-white pt-15 pb-40',
className,
)}
>
Expand Down

0 comments on commit 757a4e9

Please sign in to comment.