Skip to content

Commit

Permalink
Improve tooltip styling
Browse files Browse the repository at this point in the history
  • Loading branch information
victorkirov committed Oct 23, 2024
1 parent 7f73b1e commit 743ae32
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/app/components/btcAddressTypeLabel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,12 @@ const labelMap: Record<BtcAddressType, string> = {

// TODO: centralize this tooltip with the styles
const StyledTooltip = styled(Tooltip)`
${(props) => props.theme.typography.body_bold_m}
max-width: 200px;
background-color: ${(props) => props.theme.colors.white_0};
color: #12151e;
border-radius: 8px;
padding: 7px;
border-radius: ${(props) => props.theme.space.s};
padding: 10px 12px;
`;

type BtcAddressTypeLabelProps = {
Expand Down

0 comments on commit 743ae32

Please sign in to comment.