-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
πhotfix: ν€μλ Xλ²νΌ μμ λ³κ²½ #436
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
import styled from 'styled-components'; | ||
import styled, { css } from 'styled-components'; | ||
|
||
import { icCloseWhite } from '@assets/icons'; | ||
import { COLOR } from '@styles/common/color'; | ||
import { FONT_STYLES } from '@styles/common/font-style'; | ||
|
||
|
@@ -20,9 +21,22 @@ export const StKeywordItem = styled.div<{ color: string; fontColor: string }>` | |
gap: 8px; | ||
${FONT_STYLES.R_13_TITLE} | ||
} | ||
img { | ||
cursor: pointer; | ||
} | ||
`; | ||
|
||
export const StKeywordCloseBtn = styled.div<{ color: string; theme: 'grey' | 'color' }>` | ||
cursor: pointer; | ||
mask-image: url(${icCloseWhite}); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. mask-image λΌλ μμ±μ μ°λ©΄ svg μμΉ μ μνλ μμΌλ‘ ν μ μμ΄μ© There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. μ°μ μ΄κ±° μ²μ λ΄€μ΄μ !! μ κΈ°ν΄λΌ π€© (μ§λ¬Έ) κ·Όλ° |
||
width: 13px; | ||
height: 13px; | ||
${({ color, theme }) => | ||
theme === 'grey' | ||
? css` | ||
background-color: ${COLOR.GRAY_6}; | ||
` | ||
: css` | ||
background-color: ${color}; | ||
opacity: 0.6; | ||
`} | ||
`; | ||
|
||
export const StCount = styled.span` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
μ΄κ±΄ κ°λ²Όμ΄ μ μμ΄λΌ λ°μνμ§ μμλ λ©λλ€~!
μμ λ²νΌμ΄λκΉ close λ§κ³ deleteλ μ΄λ¨κΉμ?