fix(dashboard-v2): bound graph labels to the container box

This commit is contained in:
Michał Leszczyk 2022-04-11 13:10:33 +02:00
parent d093577909
commit 2e7bccf604
No known key found for this signature in database
GPG Key ID: FA123CA8BAA2FBF4
1 changed files with 6 additions and 4 deletions

View File

@ -12,11 +12,13 @@ const BarTip = styled.span.attrs({
})``;
const BarLabel = styled.span.attrs({
className: "bg-white rounded border-2 border-palette-200 px-3 whitespace-nowrap absolute shadow",
className: "usage-label bg-white rounded border-2 border-palette-200 px-3 whitespace-nowrap absolute shadow",
})`
right: max(0%, ${({ $percentage }) => 100 - $percentage}%);
top: -0.5rem;
transform: translateX(50%);
${({ $percentage }) => `
left: max(0%, ${$percentage}%);
top: -0.5rem;
transform: translateX(-${$percentage}%);
`}
`;
export const GraphBar = ({ value, limit, label }) => {