diff --git a/pages/playground.tsx b/pages/playground.tsx
index 6355199..4237d72 100644
--- a/pages/playground.tsx
+++ b/pages/playground.tsx
@@ -11,7 +11,7 @@ import {
import { sectionsData } from "data/routes";
import React from "react";
-import About from "@/components/About";
+import { About } from "@/components/About";
import { PieChart } from "@/components/PieChart";
import { QuotationCarousel } from "@/components/QuotationCarousel";
import { Sections } from "@/components/Sections";
--
2.30.2
From 3da9cf1dc6646a224c5210932357df27f43447e3 Mon Sep 17 00:00:00 2001
From: Jared He <66887902+jaredjhe@users.noreply.github.com>
Date: Mon, 12 Sep 2022 10:57:47 -0400
Subject: [PATCH 8/8] Change heights
---
components/Sections.module.css | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/components/Sections.module.css b/components/Sections.module.css
index 7b84981..575dc97 100644
--- a/components/Sections.module.css
+++ b/components/Sections.module.css
@@ -15,7 +15,7 @@
background-color: var(--label);
height: calc(1rem / 16);
width: 100%;
- margin-top: calc(16rem / 16);
+ margin-top: calc(30rem / 16);
}
.nav {
@@ -36,7 +36,7 @@
}
.nav li:first-child {
- margin-top: calc(10rem / 16);
+ margin-top: calc(18rem / 16);
}
.nav li .linkNumber {
@@ -46,6 +46,7 @@
}
.nav li a {
+ font-size: calc(24rem / 16);
color: var(--primary-text);
}
--
2.30.2