Skip to content

Commit

Permalink
feat: 공통 컴포넌트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
imeureka committed Jan 11, 2024
1 parent 56fc8c6 commit 6f1567f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/common/Button/Cta/fill/BtnFill.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import styled from 'styled-components';
export const Wrapper = styled.button`
${({ theme: { mixin } }) => mixin.flexCenter({})}
width: 33.5rem;
padding: 1.5rem 8.1rem 1.6rem 8.1rem;
/* width: 33.5rem;
padding: 1.5rem 8.1rem 1.6rem 8.1rem; */
gap: 1rem;
border-radius: 5.5rem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ import styled from 'styled-components';
const TournamentResultFooter = () => {
return (
<TournamentResultFooterWrapper>
<BtnFill>다시하기</BtnFill>
<BtnFill>결과 제출하기</BtnFill>
<BtnFill customStyle={{ width: '16.4rem' }}>다시하기</BtnFill>
<BtnFill customStyle={{ width: '16.4rem' }}>결과 제출하기</BtnFill>
</TournamentResultFooterWrapper>
);
};

const TournamentResultFooterWrapper = styled.footer`
display: flex;
width: 16.4rem;
height: 5.2rem;
`;

Expand Down

0 comments on commit 6f1567f

Please sign in to comment.