diff options
| author | FifthWit <fifthwitbusiness@gmail.com> | 2025-08-14 15:44:50 -0500 |
|---|---|---|
| committer | FifthWit <fifthwitbusiness@gmail.com> | 2025-08-14 15:44:50 -0500 |
| commit | cfd377e29c0fa6f10c4d6bf3f507de4ca2f0b10a (patch) | |
| tree | 6e30957cf5119a8ab83dd2c719e907e988619841 /frontend/src/pages/About.tsx | |
| parent | Switched to tailwind/vite (diff) | |
| download | lphub-cfd377e29c0fa6f10c4d6bf3f507de4ca2f0b10a.tar.gz lphub-cfd377e29c0fa6f10c4d6bf3f507de4ca2f0b10a.tar.bz2 lphub-cfd377e29c0fa6f10c4d6bf3f507de4ca2f0b10a.zip | |
Mobile Design looking decent
Diffstat (limited to 'frontend/src/pages/About.tsx')
| -rw-r--r-- | frontend/src/pages/About.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/pages/About.tsx b/frontend/src/pages/About.tsx index a5bb291..7802d75 100644 --- a/frontend/src/pages/About.tsx +++ b/frontend/src/pages/About.tsx | |||
| @@ -24,11 +24,11 @@ const About: React.FC = () => { | |||
| 24 | }, []); | 24 | }, []); |
| 25 | 25 | ||
| 26 | return ( | 26 | return ( |
| 27 | <div className="p-8 text-foreground font-[--font-barlow-semicondensed-regular] prose prose-invert max-w-none"> | 27 | <div className="ml-16 p-8 text-foreground font-[--font-barlow-semicondensed-regular] prose prose-invert max-w-none"> |
| 28 | <Helmet> | 28 | <Helmet> |
| 29 | <title>LPHUB | About</title> | 29 | <title>LPHUB | About</title> |
| 30 | </Helmet> | 30 | </Helmet> |
| 31 | <ReactMarkdown>{aboutText}</ReactMarkdown> | 31 | <ReactMarkdown className={"overflow-auto"}>{aboutText}</ReactMarkdown> |
| 32 | </div> | 32 | </div> |
| 33 | ); | 33 | ); |
| 34 | }; | 34 | }; |