Skip to content
Merged
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/layout/RootLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const RootLayout = () => {
/>

<div
className={`relative z-10 w-full max-w-[393px] h-[min(800px,100vh)] flex flex-col ${isMain ? 'bg-[#292a2c]' : 'bg-[#F5F3F0]'} overflow-hidden shadow-lg`}
className={`relative z-10 w-full max-w-[402px] h-[min(874px,100vh)] flex flex-col ${isMain ? 'bg-[#292a2c]' : 'bg-[#F5F3F0]'} overflow-hidden shadow-lg`}
id="app-container"
>
{/* 헀더 */}
Expand All @@ -44,7 +44,7 @@ const RootLayout = () => {

{/* ν™”λ©΄ 높이가 700px 이상일 λ•Œλ§Œ λΌμš΄λ“œ 적용 */}
<style>{`
@media (min-height: 700px) {
@media (min-height: 874px) {
#app-container {
border-radius: 0.75rem; /* rounded-xl */
}
Expand Down