Skip to content

Commit

Permalink
fix(tx-builder-tooltips): fix tooltip background on generic modal
Browse files Browse the repository at this point in the history
  • Loading branch information
clovisdasilvaneto committed Oct 21, 2024
1 parent 067bd9d commit 5b6014c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/tx-builder/src/components/Tooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ const customTooltip = ({ backgroundColor, textColor, size = 'md' }: TooltipProps
backgroundColor:
backgroundColor && theme.palette[backgroundColor]
? (theme.palette[backgroundColor] as PaletteColor).main
: '#E8E7E6',
: theme.palette.primary.main,
boxShadow: `1px 2px 10px ${alpha('#28363D', 0.18)}`,
border: getBorderBySize(size),
color: textColor
Expand Down

0 comments on commit 5b6014c

Please sign in to comment.