Skip to content

Commit 0c4c94c

Browse files
committed
fix: update dashboard grid to use space-between rather than space-around for grid-of-grids row
1 parent 38536df commit 0c4c94c

File tree

1 file changed

+1
-1
lines changed
  • plugins/plugin-codeflare-dashboard/src/components/Dashboard

1 file changed

+1
-1
lines changed

Diff for: plugins/plugin-codeflare-dashboard/src/components/Dashboard/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ class Grid extends React.PureComponent<GridProps> {
205205
<Box flexDirection="column">
206206
{A.filter(Boolean).map((AA, ridx) => (
207207
/* legend row */
208-
<Box key={ridx} flexDirection="row" justifyContent="space-around">
208+
<Box key={ridx} flexDirection="row" justifyContent="space-between">
209209
{AA.filter(Boolean).map((_, cidx) => (
210210
/* legend entry (i.e. legend column) */
211211
<Box key={_.state} {...outerBoxProps}>

0 commit comments

Comments
 (0)