Skip to content

Commit

Permalink
alignment correction
Browse files Browse the repository at this point in the history
Andrea Petrucci committed Nov 22, 2023
1 parent 8759832 commit e91c122
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions webapp/src/components/InformationDrawer/InformationDrawer.tsx
Original file line number Diff line number Diff line change
@@ -68,12 +68,12 @@ export const InformationDrawer: React.FC<{
>
{description ? description.name : ''}
</Typography>
<Grid container sx={{mb: 4}}>
<Grid item xs={11} sm={10}>
<Grid container mb={3}>
<Grid item xs={description.has_ai ? 11 : 12} sm={description.has_ai ? 10 : 12}>
<Grid container>
{description.tags ? description.tags.map((tag: any, index: number) => {
return (
<Grid key={`service-tag-${index}`} pr={1}>
<Grid key={`service-tag-${index}`} pr={1} pb={1}>
<Tooltip title={tag.name}>
<Chip
className={"acronym-chip"}

0 comments on commit e91c122

Please sign in to comment.