Skip to content

Commit

Permalink
fix: firefox overlapping (#2082)
Browse files Browse the repository at this point in the history
  • Loading branch information
JP authored Apr 11, 2024
1 parent 78431cb commit f62354e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions centrifuge-app/src/components/Charts/CashflowsChart.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { CurrencyBalance, DailyPoolState, Pool } from '@centrifuge/centrifuge-js'
import { Box, Grid, Shelf, Stack, Text } from '@centrifuge/fabric'
import { Box, Shelf, Stack, Text } from '@centrifuge/fabric'
import capitalize from 'lodash/capitalize'
import startCase from 'lodash/startCase'
import * as React from 'react'
Expand Down Expand Up @@ -174,7 +174,7 @@ function CustomLegend({

return (
<Shelf bg="backgroundPage" width="100%" gap={2}>
<Grid gridTemplateColumns="fit-content(100%) fit-content(100%) fit-content(100%) fit-content(100%)" gap={3}>
<Shelf gap={3}>
<Stack borderLeftWidth="3px" pl={1} borderLeftStyle="solid" borderLeftColor="#001C66" gap="4px">
<Text variant="body3" color="textSecondary">
Total purchases
Expand Down Expand Up @@ -211,7 +211,7 @@ function CustomLegend({
</Text>
<Text variant="body1">{formatBalance(0, 'USD', 2)}</Text>
</Stack> */}
</Grid>
</Shelf>
</Shelf>
)
}

0 comments on commit f62354e

Please sign in to comment.