Skip to content

Commit

Permalink
refactor/BibimMandu-IssueTacker#158: 메인 페이지 필터 드롭다운 인디케이터 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
qkdflrgs committed Aug 11, 2023
1 parent 172d259 commit 024e8c3
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions FE/src/pages/MainPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default function MainPage() {
};

const goMilestonesPage = () => {
navigate("/milestones");
navigate("/milestones/isOpen=true");
};

const showOpenIssue = () => {
Expand Down Expand Up @@ -139,10 +139,14 @@ export default function MainPage() {
/>
</IssueTap>
<FilterTap>
<DropdownIndicator label={"담당자"} />
<DropdownIndicator label={"레이블"} />
<DropdownIndicator label={"마일스톤"} />
<DropdownIndicator label={"작성자"} />
<DropdownIndicator
type={"assignees"}
label={"담당자"}
dropdownTop={"40px"}
/>
<DropdownIndicator type={"labels"} label={"레이블"} />
<DropdownIndicator type={"milestones"} label={"마일스톤"} />
<DropdownIndicator type={"authors"} label={"작성자"} />
</FilterTap>
</TapWrapper>
</TableHeader>
Expand Down Expand Up @@ -218,7 +222,7 @@ const TapButtonWrapper = styled.div`
`;

const IssueTable = styled.section`
z-index: 10;
width: 100%;
border: ${({ theme }) =>
`${theme.border.default} ${theme.colorSystem.neutral.border.default}`};
border-radius: ${({ theme }) => theme.radius.large};
Expand Down Expand Up @@ -269,6 +273,7 @@ const IssueTap = styled.form`
`;

const FilterTap = styled.div`
position: relative;
display: flex;
gap: 32px;
`;
Expand Down

0 comments on commit 024e8c3

Please sign in to comment.