fix: fix bug with breakpoints

This commit is contained in:
jinhojang6 2024-03-28 03:21:09 +09:00
parent 68417b48dd
commit 5ced5dba74
1 changed files with 2 additions and 2 deletions

View File

@ -320,9 +320,9 @@ const ShowMoreTagsButton = styled.div`
`
const FeaturedFirst = styled.div`
${(props) => lsdUtils.breakpoint(props.theme, 'xs', 'up')} {
${(props) => lsdUtils.breakpoint(props.theme, 'sm', 'up')} {
.show-details {
margin-top: var(--lsd-spacing-32);
margin-top: var(--lsd-spacing-32) !important;
}
}
`