Skip to content

Conversation

@saseungmin
Copy link
Collaborator

  • 주최자가 신청한 신청자의 목록을 보는 페이지 구현 (모달창으로)
  • 여기서는 신청서를 볼 수 있고, 승인 또는 취소할 수 있다. => 구현 예정

image

@saseungmin saseungmin added the enhancement New feature or request label Dec 10, 2020
Comment on lines +100 to +145
const ConfirmButton = styled.button`
transition-duration: 0.08s;
transition-property: all;
transition-timing-function: ease-in-out;
transition-delay: initial;
font-size: 0.8rem;
padding: 0.15rem 0.7rem;
font-weight: bold;
outline: none;
border: none;
cursor: pointer;
background: none;
font-family: 'Noto Sans KR', sans-serif;
border-radius: 4px;
color: white;

${({ sky }) => sky && css`
background: #74c0fc;
border-bottom: 2px solid #4dabf7;
box-shadow: 0px 2px 4px #4dabf7;
&:hover{
box-shadow: none;
border-bottom: 2px solid #74c0fc;
}
`};

${({ confirm }) => confirm && css`
background: ${palette.teal[5]};
border-bottom: 2px solid ${palette.teal[6]};
box-shadow: 0px 2px 4px ${palette.teal[6]};
&:hover{
box-shadow: none;
border-bottom: 2px solid ${palette.teal[5]};
}
`};

${({ cancel }) => cancel && css`
background: ${palette.warn[1]};
border-bottom: 2px solid ${palette.warn[2]};
box-shadow: 0px 2px 4px ${palette.warn[2]};
&:hover{
box-shadow: none;
border-bottom: 2px solid ${palette.warn[1]};
}
`};
`;
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Button Styled Component를 따로 분리해주기.

@saseungmin saseungmin merged commit fb9f742 into CodeSoom:main Dec 10, 2020
@saseungmin saseungmin deleted the create-user-cofirm-modal branch July 5, 2021 19:55
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant