Skip to content

Commit

Permalink
Add grey border to 2YP tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
ckoopmann committed May 27, 2024
1 parent 0cecaad commit dd9e26e
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,11 @@ const SupplyChart: FC<Props> = ({
);

const table = `<table><tbody>${rows.join("")}</tbody></table>`;
return `<div class="tt-root">${header}${table}</div>`;
return `
<div class="relative z-10 w-60 rounded-lg border-2 font-roboto bg-slateus-700 border-slateus-400">
<div class="tt-root">${header}${table}</div>
</div>
`;
},
},
};
Expand Down

0 comments on commit dd9e26e

Please sign in to comment.