Skip to content

Commit

Permalink
fix: change button style
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanghou committed May 8, 2024
1 parent c86b1ad commit 064ffff
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/web/src/components/molecules/ModalInnerTextBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,11 @@ const VoteChoice: React.FC<PropsWithChildren & { onClick?: () => void }> = ({
{children}
</p>
<Clickable>
<Button css={[w(13), h(13)]} onClick={onClick}>
<Button
css={[w(13), h(13)]}
style={{ background: "transparent" }}
onClick={onClick}
>
<TrashIcon />
</Button>
</Clickable>
Expand Down

0 comments on commit 064ffff

Please sign in to comment.