Skip to content

Commit

Permalink
style: 공통 버튼 수정 및 footer 색 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
imeureka committed Jan 11, 2024
1 parent 6f1567f commit 36fe110
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/components/common/Button/Cta/fill/BtnFill.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export const Wrapper = styled.button`
/* width: 33.5rem;
padding: 1.5rem 8.1rem 1.6rem 8.1rem; */
border: none;
gap: 1rem;
border-radius: 5.5rem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,26 @@ import styled from 'styled-components';
const TournamentResultFooter = () => {
return (
<TournamentResultFooterWrapper>
<BtnFill customStyle={{ width: '16.4rem' }}>다시하기</BtnFill>
<BtnFill customStyle={{ width: '16.4rem' }}>결과 제출하기</BtnFill>
<BtnFill
customStyle={{
width: '16.4rem',
background: '#FFF',
color: 'black',
border: '1px solid #FF2176',
}}
>
다시하기
</BtnFill>
<BtnFill customStyle={{ width: '16.4rem', background: '#FF2176' }}>결과 제출하기</BtnFill>
</TournamentResultFooterWrapper>
);
};

const TournamentResultFooterWrapper = styled.footer`
const TournamentResultFooterWrapper = styled.div`
display: flex;
justify-content: center;
gap: 0.8rem;
height: 5.2rem;
`;

Expand Down

0 comments on commit 36fe110

Please sign in to comment.