Skip to content

Commit

Permalink
๐Ÿ’„ 220921: ์ปค๋ฆฌํ˜๋Ÿผ ์ปดํฌ๋„ŒํŠธ ์Šคํƒ€์ผ ์ˆ˜์ •
Browse files Browse the repository at this point in the history
### ์ปค๋ฆฌํ˜๋Ÿผ ์ปดํฌ๋„ŒํŠธ ์Šคํƒ€์ผ ์ˆ˜์ •
* ๋ชจ๋ฐ”์ผ ๋ทฐ๊ฐ€ ์˜ฌ๋ฐ”๋ฅด์ง€ ์•Š์€ ๋ถ€๋ถ„ ์ˆ˜์ •
  • Loading branch information
HTMLhead authored Sep 21, 2022
2 parents e048c03 + aa7aaaa commit 7d51f59
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ const CurriculumList = styled.ul`

const TitleWrapper = styled.div`
display: block;
margin-bottom: 5.6rem;
`;
const LinkWrapper = styled(Link)<{ medium?: boolean }>`
text-decoration: none;
Expand Down Expand Up @@ -150,8 +149,11 @@ const SubjectDetailList = styled.ul`
`;
const DivideLine = styled.div`
border-bottom: 0.1rem solid ${({ theme: { color } }) => color.greyScale.grey4};
margin: 5.6rem 0;
width: 100%;
margin: 5.6rem 0;
@media ${({ theme }) => theme.device.mobile} {
margin: 3.2rem 0;
}
`;

export default Curriculum;

0 comments on commit 7d51f59

Please sign in to comment.