Skip to content

Commit

Permalink
fix total cost z-index
Browse files Browse the repository at this point in the history
  • Loading branch information
jusrhee committed May 7, 2024
1 parent bcb1261 commit ed3d7bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dashboard/src/main/home/project-settings/UsagePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ function UsagePage(): JSX.Element {
<BarWrapper>
<Total>Total cost: ${computeTotalCost(processedCosts)}</Total>
<Bars
fill="#8784D2"
fill="#C59262"
yKey="cost"
xKey="start_timestamp"
data={processedCosts || []}
Expand Down Expand Up @@ -188,6 +188,7 @@ const Total = styled.div`
padding: 7px 10px;
border-radius: 5px;
border: 1px solid #494b4f;
z-index: 999;
`;

const Flex = styled.div`
Expand Down

0 comments on commit ed3d7bf

Please sign in to comment.