Skip to content

Commit b3a1671

Browse files
authored
Merge pull request #229 from AbhiVarde/fix/mobile-text-overflow
fix: mobile text overflow on About page
2 parents 013cf99 + 34c137b commit b3a1671

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/app/(website)/about/AboutPage.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,14 @@ export default function AboutPage() {
66
return (
77
<>
88
<PageHeader title="Company" />
9-
<Box style={{ margin: 'auto', width: 500 }}>
9+
<Box
10+
style={{
11+
margin: 'auto',
12+
maxWidth: '500px',
13+
width: '100%',
14+
padding: '0 1rem',
15+
}}
16+
>
1017
<p>
1118
Umami was founded with the belief that users should be empowered by the software they use.
1219
</p>

0 commit comments

Comments
 (0)