Skip to content

Commit

Permalink
refactor: Theme 이상한거 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
stopmin committed Jul 16, 2024
1 parent 8d9a9a1 commit 7f179cf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/ColorTooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,10 @@ const ColorTooltip = styled(({ className, title, arrow, placement, children }: T
<Tooltip arrow={arrow} classes={{ popper: className }} placement={placement} title={title}>
{children}
</Tooltip>
))(({ theme }) => ({
))(() => ({
[`& .${tooltipClasses.tooltip}`]: {
backgroundColor: 'white',
color: 'black',
boxShadow: theme.shadows[1],
fontSize: 14,
padding: '10px 15px',
borderRadius: '4px',
Expand Down

0 comments on commit 7f179cf

Please sign in to comment.