Skip to content

Commit

Permalink
Fixed tip centering on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
fileformat committed Jan 18, 2025
1 parent ce4c61b commit 8449acd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ProTip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function ProTip() {
const t = useTranslations('HomePage');

return (
<Typography sx={{ mt: 6, mb: 3, color: 'text.secondary' }}>
<Typography sx={{ mt: 6, mb: 3, textAlign: 'center', color: 'text.secondary' }}>
{t.rich('tip', {
Icon: () => <LightBulbIcon sx={{ mr: 1, verticalAlign: 'middle' }} />,
Link: (chunks) => <NextLink href="https://www.sitemap.style/viewer-integration.html">{chunks}</NextLink>,
Expand Down

0 comments on commit 8449acd

Please sign in to comment.