From 144b99349f872cdba9a79277029fa286a73a7ee4 Mon Sep 17 00:00:00 2001 From: kim Date: Mon, 23 Oct 2023 16:43:33 +0200 Subject: [PATCH] refactor: use grid2 to work with no wrap --- src/components/main/AppCard.tsx | 39 ++++++++++++++++++++------------- 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/src/components/main/AppCard.tsx b/src/components/main/AppCard.tsx index a65b99386..cced9b1f7 100644 --- a/src/components/main/AppCard.tsx +++ b/src/components/main/AppCard.tsx @@ -1,9 +1,9 @@ import { + Box, Card, CardActionArea, CardContent, Skeleton, - Stack, Typography, styled, } from '@mui/material'; @@ -46,25 +46,32 @@ const AppCard = ({ id={buildItemFormAppOptionId(name)} > - - - {name} - - + + + + {name} + + + {name ?? } @@ -72,15 +79,17 @@ const AppCard = ({ {description ?? } - - + + );