Skip to content

Commit

Permalink
๐Ÿ›fix: ์ˆ˜์ •์‚ฌํ•ญ ์ ์šฉ ์™„๋ฃŒ
Browse files Browse the repository at this point in the history
  • Loading branch information
heejung0413 committed Jul 21, 2024
1 parent 71b800c commit 201ddf5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 19 deletions.
40 changes: 23 additions & 17 deletions src/components/layout/parts/PageSideBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { FC, useEffect, useState } from 'react';
import { PeopleFill, Person, PersonFill, PlusCircleFill } from 'react-bootstrap-icons';
import { IoIosListBox } from 'react-icons/io';
import { RiFolder6Fill } from 'react-icons/ri';
import { Link, useNavigate } from 'react-router-dom';
import { useNavigate } from 'react-router-dom';
import {
Accordion,
AccordionButton,
Expand Down Expand Up @@ -167,24 +167,30 @@ const PageSideBar: FC<Props> = ({ onClose }) => {
</AccordionItem>

<AccordionItem border="1px solid gray">
<Link to="/create">
<AccordionButton>
<Flex alignItems="center" padding="2px 10px">
<PlusCircleFill style={{ marginRight: '5px' }} />
<a style={{ color: '#111b47', textDecoration: 'none' }}>Create New Retrospective</a>
</Flex>
</AccordionButton>
</Link>
<AccordionButton
onClick={() => {
navigate('/create');
onClose();
}}
>
<Flex alignItems="center" padding="2px 10px">
<PlusCircleFill style={{ marginRight: '5px' }} />
<a style={{ color: '#111b47', textDecoration: 'none' }}>Create New Retrospective</a>
</Flex>
</AccordionButton>
</AccordionItem>
<AccordionItem borderBottom="1px solid gray">
<Link to="/retrolist">
<AccordionButton>
<Flex alignItems="center" padding="2px 10px">
<IoIosListBox style={{ marginRight: '5px' }} />
<a style={{ color: '#111b47', textDecoration: 'none' }}>Go to Retrospect List</a>
</Flex>
</AccordionButton>
</Link>
<AccordionButton
onClick={() => {
navigate('/retrolist');
onClose();
}}
>
<Flex alignItems="center" padding="2px 10px">
<IoIosListBox style={{ marginRight: '5px' }} />
<a style={{ color: '#111b47', textDecoration: 'none' }}>Go to the Retrospect List</a>
</Flex>
</AccordionButton>
</AccordionItem>
</Accordion>
</S.SideBarBGContainer>
Expand Down
4 changes: 2 additions & 2 deletions src/pages/CreateRetroPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const CreateRetroPage: React.FC = () => {
</S.SpacedButton>
<D.SpacedLeft>
<D.DescriptionTitle backgroundColor="#111b47">
<span style={{ fontWeight: 'bold' }}>ํŒ€ ํšŒ๊ณ  ํ…œํ”Œ๋ฆฟ ์†Œ๊ฐœ</span>
<span style={{ fontWeight: 'bold' }}>ํŒ€ ํšŒ๊ณ  ํ…œํ”Œ๋ฆฟ</span>
</D.DescriptionTitle>
<TeamRetroDescription />
</D.SpacedLeft>
Expand All @@ -50,7 +50,7 @@ const CreateRetroPage: React.FC = () => {
</S.SpacedButton>
<D.SpacedRight>
<D.DescriptionTitle color="#111b47">
<span style={{ fontWeight: 'bold' }}>๊ฐœ์ธ ํšŒ๊ณ  ํ…œํ”Œ๋ฆฟ ์†Œ๊ฐœ</span>
<span style={{ fontWeight: 'bold' }}>๊ฐœ์ธ ํšŒ๊ณ  ํ…œํ”Œ๋ฆฟ</span>
</D.DescriptionTitle>
<PersonalRetroDescription />
</D.SpacedRight>
Expand Down

0 comments on commit 201ddf5

Please sign in to comment.