Skip to content

Commit

Permalink
[#24] 레이아웃 크기 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hanseulhee committed May 13, 2024
1 parent bd82f5f commit 3c64e42
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 3 additions & 4 deletions src/components/IbulDialog/IdeaOutline.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
'use client'

import React from 'react'
import {
DialogClose,
DialogContent,
Expand All @@ -10,10 +9,10 @@ import {
DialogRoot,
DialogTitle,
DialogTrigger,
} from '../common/Dialog'
import styled from 'styled-components'
import { FaX } from 'react-icons/fa6'
} from '@/components/common/Dialog'
import { theme } from '@/styles/theme'
import { FaX } from 'react-icons/fa6'
import styled from 'styled-components'

const IdeaOutlineContainer = styled.div`
display: flex;
Expand Down
3 changes: 2 additions & 1 deletion src/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ const LayoutRegistry = ({ children }: { children: React.ReactNode }) => {
export default LayoutRegistry

const StyledWrapper = styled.main`
max-width: 480px;
max-width: 430px;
min-width: 363px;
width: 100%;
margin: 0 auto;
min-height: 100vh;
Expand Down

0 comments on commit 3c64e42

Please sign in to comment.