aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/pages/Rules
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/pages/Rules')
-rw-r--r--frontend/src/pages/Rules/Rules.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/pages/Rules/Rules.tsx b/frontend/src/pages/Rules/Rules.tsx
index 9c7885c..20d301c 100644
--- a/frontend/src/pages/Rules/Rules.tsx
+++ b/frontend/src/pages/Rules/Rules.tsx
@@ -25,12 +25,12 @@ const Rules: React.FC = () => {
25 }, []); 25 }, []);
26 26
27 return ( 27 return (
28 <main className="ml-16 p-8 text-foreground font-[--font-barlow-semicondensed-regular] prose prose-invert max-w-none"> 28 <div className="pl-8 pt-2">
29 <Helmet> 29 <Helmet>
30 <title>LPHUB | Rules</title> 30 <title>LPHUB | Rules</title>
31 </Helmet> 31 </Helmet>
32 <ReactMarkdown>{rulesText}</ReactMarkdown> 32 <ReactMarkdown>{rulesText}</ReactMarkdown>
33 </main> 33 </div>
34 ); 34 );
35}; 35};
36 36