diff --git a/routes/(apps)/_layout.tsx b/routes/(apps)/_layout.tsx index 7852df6..0fe56fa 100644 --- a/routes/(apps)/_layout.tsx +++ b/routes/(apps)/_layout.tsx @@ -17,9 +17,11 @@ export default async function AppLayout( return (
- - - +
+ + + +
); } diff --git a/routes/_app.tsx b/routes/_app.tsx index 16dc070..7025b97 100644 --- a/routes/_app.tsx +++ b/routes/_app.tsx @@ -18,7 +18,7 @@ export default async function App( PolyMPR #app-body { + padding: 0; +} + #app > nav { display: flex; flex-direction: column; @@ -41,7 +45,7 @@ ) 10%, transparent ); - font-weight: 700; + font-weight: var(--font-weight-bold); } #app > nav > a[data-current="true"]::before { diff --git a/static/styles/main.css b/static/styles/main.css index a36f5c4..ce2282a 100644 --- a/static/styles/main.css +++ b/static/styles/main.css @@ -19,7 +19,9 @@ --light-strong-color: hsl(210, 70%, 50%); --light-error-color: hsl(210, 70%, 50%); - --font-family-text: "Inter", sans-serif; + --font-family-text: "Recursive", sans-serif; + --font-weight-normal: 500; + --font-weight-bold: 900; } * { @@ -41,7 +43,11 @@ body { var(--dark-background-color) ); color: light-dark(var(--light-foreground), var(--dark-foreground)); - font-weight: 300; + font-weight: var(--font-weight-normal); +} + +h1, h2, h3, h4, h5 { + font-weight: var(--font-weight-bold); } header { @@ -55,7 +61,7 @@ header { var(--dark-foreground-dimmer) ); - font-weight: 700; + font-weight: var(--font-weight-bold); } header > h1 {