Skip to content

Commit

Permalink
fix(coral) - Fix TableLayout filters row (#1991)
Browse files Browse the repository at this point in the history
fix(coral) - Fix TableLayout filters row

Signed-off-by: Mathieu Anderson <mathieu.anderson@aiven.io>
  • Loading branch information
Mathieu Anderson authored Nov 17, 2023
1 parent e7655d6 commit cc30b19
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions coral/src/app/features/components/layouts/TableLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,17 @@ function TableLayout(props: TableLayoutProps) {
flexDirection={"row"}
flexWrap={"wrap"}
alignItems={"center"}
justifyContent={"stretch"}
justifyContent={"space-between"}
colGap={"l1"}
marginY={"l1"}
>
{filters.map((element) => {
return (
<Box.Flex key={element.key} flexDirection={"column"}>
<Box.Flex
key={element.key}
flexDirection={"column"}
flex={"1 0 auto"}
>
{element}
</Box.Flex>
);
Expand Down

0 comments on commit cc30b19

Please sign in to comment.