chore: update ShowMoreTagsButton styles

This commit is contained in:
jinhojang6 2024-03-19 01:06:37 +09:00
parent 3e7b14edff
commit 6f31ae7f44
No known key found for this signature in database
GPG Key ID: 1762F21FE8B543F8
1 changed files with 5 additions and 0 deletions

View File

@ -277,6 +277,7 @@ const TagsTitle = styled.div`
gap: var(--lsd-spacing-8);
span {
cursor: pointer;
color: var(--lsd-color-primary);
text-decoration: underline;
}
@ -293,4 +294,8 @@ const ShowMoreTagsButton = styled.div`
box-sizing: border-box;
margin-bottom: 66px;
${(props) => lsdUtils.breakpoint(props.theme, 'sm', 'up')} {
display: none;
}
`