Skip to content

Commit

Permalink
style(elements): fix close button size in SingleTag
Browse files Browse the repository at this point in the history
  • Loading branch information
ivangabriele committed Sep 25, 2024
1 parent 8e10304 commit ff8a1b5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/elements/SingleTag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,17 @@ const PrimaryText = styled.span`
color: ${p => p.theme.color.gunMetal};
font-size: 13px;
line-height: 1.3846;
padding: 3px 8px 5px;
padding: 2px 8px 6px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
`

const PrimaryIconButton = styled(IconButton as any)`
background-color: ${p => p.theme.color.lightGray};
line-height: 18px;
margin-left: 1px;
padding: 7px;
padding: 2px 8px 6px;
:hover,
&._hover {
Expand Down

0 comments on commit ff8a1b5

Please sign in to comment.