Skip to content

Commit

Permalink
stray improvements here and there
Browse files Browse the repository at this point in the history
  • Loading branch information
danilo-leal committed Apr 15, 2024
1 parent 455c4d0 commit ef16003
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
4 changes: 3 additions & 1 deletion docs/src/components/action/Item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ export default function Item({
p: 2,
pr: smallerIconDistance ? 3 : 2,
display: 'flex',
alignItems: 'center',
flexDirection: { xs: 'column', sm: 'row' },
alignItems: { xs: 'start', sm: 'center' },
gap: { xs: 2, sm: 0.5 },
...props.sx,
}}
>
Expand Down
4 changes: 2 additions & 2 deletions docs/src/components/productDesignKit/DesignKitHero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ export default function TemplateHero() {
</Typography>
<Typography variant="h1" sx={{ my: 2, maxWidth: 500 }}>
Material UI
<br /> in your favorite
<br /> <GradientText>design tool</GradientText>
<br />
for <GradientText>Figma</GradientText>
</Typography>
<Typography color="text.secondary" sx={{ mb: 3, maxWidth: 450 }}>
Pick your favorite design tool to enjoy and use Material UI components. Boost
Expand Down
12 changes: 6 additions & 6 deletions docs/src/layouts/AppFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,6 @@ export default function AppFooter(props: AppFooterProps) {
<Link prefetch={false} href={ROUTES.productConnect}>
Connect
</Link>
<Link prefetch={false} href={ROUTES.productTemplates}>
Templates
</Link>
<Link prefetch={false} href={ROUTES.productDesignKits}>
Design Kits
</Link>
</Box>
<Box sx={{ display: 'flex', flexDirection: 'column' }}>
<Typography fontWeight="semiBold" variant="body2" sx={{ mb: 0.5 }}>
Expand All @@ -114,6 +108,12 @@ export default function AppFooter(props: AppFooterProps) {
<Link prefetch={false} href={ROUTES.theming}>
Theming
</Link>
<Link prefetch={false} href={ROUTES.productTemplates}>
Templates
</Link>
<Link prefetch={false} href={ROUTES.productDesignKits}>
Design Kits
</Link>
</Box>
<Box sx={{ display: 'flex', flexDirection: 'column' }}>
<Typography fontWeight="semiBold" variant="body2" sx={{ mb: 0.5 }}>
Expand Down

0 comments on commit ef16003

Please sign in to comment.