Skip to content

Commit

Permalink
style: style lint 적용 및 개행
Browse files Browse the repository at this point in the history
  • Loading branch information
ukkodeveloper committed Nov 6, 2023
1 parent 2af5e0b commit 6441a12
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ const RegisterButton = styled.button`
@media (min-width: ${({ theme }) => theme.breakPoints.md}) {
padding: 11px 15px;
font-size: 18px;
}
`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ const Body = styled.div`
`;

const Button = styled.button`
padding: 4px 11px;
color: white;
border: 2px solid white;
padding: 4px 11px;
border-radius: 4px;
`;
10 changes: 8 additions & 2 deletions frontend/src/shared/components/ConfirmModal/ConfirmModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,20 +72,25 @@ const Container = styled.section`
border: none;
border-radius: 16px;
`;

const ButtonFlex = styled(Flex)`
width: 100%;
`;

const Title = styled.header`
text-align: left;
font-size: 18px;
text-align: left;
`;

const Content = styled.div``;

const buttonStyle = css`
flex: 1;
width: 100%;
height: 36px;
color: ${({ theme: { color } }) => color.white};
width: 100%;
border-radius: 10px;
`;
Expand All @@ -94,6 +99,7 @@ const CancelButton = styled.button`
background-color: ${({ theme: { color } }) => color.secondary};
${buttonStyle}
`;

const ConfirmButton = styled.button`
background-color: ${({ theme: { color } }) => color.primary};
${buttonStyle}
Expand Down

0 comments on commit 6441a12

Please sign in to comment.