Skip to content

Commit

Permalink
adjust gap, padding and margin of the tile container
Browse files Browse the repository at this point in the history
  • Loading branch information
Cloud11PL committed Nov 25, 2024
1 parent 157f9fd commit 919ebe4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/newHome/homeInfoTiles/HomeInfoTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ export const HomeInfoTile: React.FC<InfoTile> = ({ id, bottomActions, content, h
borderColor="default1"
borderRadius={3}
borderWidth={1}
margin={4}
display="flex"
flexDirection="column"
gap={4}
key={id}
margin={0}
>
<DashboardCard.Header>
<DashboardCard.Title display="flex" alignItems="center" gap={3}>
Expand Down
4 changes: 3 additions & 1 deletion src/newHome/homeInfoTiles/TilesContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ export const HomeTilesContainer: React.FC = () => {
mobile: 1,
desktop: 2,
}}
padding={2}
gap={6}
marginTop={6}
marginRight={6}
>
{tiles.map(tile => (
<HomeInfoTile key={tile.id} {...tile} />
Expand Down

0 comments on commit 919ebe4

Please sign in to comment.