Skip to content

Commit

Permalink
fix: 5차 QA 진행 (#112)
Browse files Browse the repository at this point in the history
* chore: 확정 기능 제외

* feat: 우선순위 보여줄 때 참여자 이름 항상 표시하기

* fix: 이메일 등록 기능 제거

* hotfix: 아무도 일정 등록하지 않았을 때 발생하는 에러 해결

* fix: 24시간제로 변경 시 표에서 발생하는 시간 표시 에러 해결

* chore: 불필요한 주석 제거

* chore: console.log 제거
  • Loading branch information
corinthionia committed Aug 2, 2023
1 parent 78187b8 commit cab4196
Show file tree
Hide file tree
Showing 18 changed files with 90 additions and 567 deletions.
95 changes: 0 additions & 95 deletions src/assets/data/currentTime.json

This file was deleted.

49 changes: 0 additions & 49 deletions src/assets/data/result.json

This file was deleted.

3 changes: 0 additions & 3 deletions src/assets/icons/collapse.svg

This file was deleted.

12 changes: 0 additions & 12 deletions src/assets/icons/emailDefault.svg

This file was deleted.

14 changes: 0 additions & 14 deletions src/assets/icons/emailRegistered.svg

This file was deleted.

3 changes: 0 additions & 3 deletions src/assets/icons/expand.svg

This file was deleted.

6 changes: 0 additions & 6 deletions src/atoms/emailAtoms.ts

This file was deleted.

83 changes: 0 additions & 83 deletions src/components/accordion/Accordion.tsx

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export const Wrapper = styled.div`
width: 100%;
max-width: 412px;
margin-top: 10px;
padding: 15px 17px;
border-radius: 7px;
background: ${theme.colors.purple01};
Expand All @@ -14,28 +15,16 @@ export const Wrapper = styled.div`
justify-content: center;
`;

export const DefaultWrapper = styled.section`
width: 100%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
`;

export const Content = styled.div`
width: 100%;
height: 73px;
padding: 15px 19px 15px 17px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
`;

export const PeopleWrapper = styled.div`
export const ProportionWrapper = styled.div`
width: 100%;
`;

Expand All @@ -52,31 +41,14 @@ export const TimeWrapper = styled.div`
display: flex;
justify-content: space-between;
`;
export const TimeSpan = styled.span`
color: ${theme.colors.gray06};
${theme.typography.semibold03};
`;

export const Icon = styled.img`
width: 21px;
height: 21px;
cursor: pointer;
`;

export const ListWrapper = styled.div`
width: 100%;
height: 0px;
overflow: hidden;
transition: height 0.35s ease, background 0.35s ease;
`;

export const ListItem = styled.div`
width: 100%;
padding: 17px;
margin-top: 14px;
display: flex;
flex-flow: wrap;
Expand All @@ -86,9 +58,10 @@ export const ListItem = styled.div`
`;

export const Participant = styled.div`
width: 44px;
height: 24px;
min-width: 44px;
border-radius: 3px;
padding: 4px 5px;
${theme.typography.medium05};
color: ${theme.colors.gray05};
Expand Down
Loading

0 comments on commit cab4196

Please sign in to comment.