Skip to content

Commit

Permalink
[#7] 세부 css 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
03hoho03 committed May 12, 2024
1 parent 6bd01d9 commit 382b158
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/components/IbulDialog/IdeaOutline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const StyleBottomClosedBtn = styled.button`
justify-content: center;
align-items: center;
height: 54px;
width: 360px;
width: 353px;
background-color: ${theme.color.purple700};
color: ${theme.color.white};
border-bottom-left-radius: 14px;
Expand All @@ -62,6 +62,7 @@ const StyleBottomClosedBtn = styled.button`
const StyledDescriptionWrapper = styled.div`
display: flex;
flex-direction: column;
gap: 5px;
`

const IdeaOutline = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/Dialog/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const StyledContent = styled(DialogPrimitive.Content)`
left: 50%;
transform: translate(-50%, -50%);
width: 90vw;
max-width: 360px;
max-width: 353px;
min-height: 320px;
max-height: 85vh;
padding: 60px 20px 54px;
Expand Down
3 changes: 2 additions & 1 deletion src/components/common/Dialog/Description.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@ const StyledDescription = styled(
/* 기본값 */
margin: 0;
color: ${theme.color.black};
line-height: 150%;
line-height: 120%;
letter-spacing: -0.05em;
white-space: pre-wrap;
/* size */
${sizeStyles}
/* theme */
Expand Down
2 changes: 2 additions & 0 deletions src/components/common/Dialog/Title.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ const DialogTitleSizeStyles = css<StyledTitleProps>`
`

const StyledTitle = styled(DialogPrimitive.Title)<StyledTitleProps>`
line-height: 140%;
letter-spacing: -0.05em;
color: ${theme.color.black};
${DialogTitleSizeStyles}
Expand Down

0 comments on commit 382b158

Please sign in to comment.