feat(portfolio): add global list style

This commit is contained in:
Kim, Jimin 2023-06-29 21:27:24 +09:00
parent 0a6c64682d
commit 9729020e08
2 changed files with 7 additions and 7 deletions

View file

@ -17,13 +17,6 @@ const StyledCollapseContainer = styled.div`
* {
transition: height 200ms ease-out;
}
ul,
ol {
list-style: circle;
padding-left: 2.5rem;
list-style-position: inside;
}
`
const Toc: FC<{ data?: string }> = (props) => {

View file

@ -38,3 +38,10 @@ h6 {
@apply dark:text-dark-anchor-header;
}
}
ul,
ol {
list-style: circle;
padding-left: 2.5rem;
list-style-position: inside;
}