Code review fixes
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jared He 2022-09-07 22:59:41 -04:00
parent ff2ec0ce3b
commit 5c87e7636e
3 changed files with 30 additions and 17 deletions

View File

@ -1,8 +1,8 @@
.sections { .sections {
display: flex; display: flex;
flex-direction: row; flex-direction: row;
width: 50%; min-width: calc(1000rem / 16);
gap: 15px; gap: calc(15rem / 16);
margin: 0 auto; margin: 0 auto;
} }
@ -17,7 +17,7 @@
background-color: var(--label); background-color: var(--label);
height: calc(1rem / 16); height: calc(1rem / 16);
width: 100%; width: 100%;
margin-top: calc(24rem / 16); margin-top: calc(16rem / 16);
} }
.nav { .nav {
@ -27,10 +27,8 @@
} }
.navItem { .navItem {
display: flex;
flex-direction: row;
align-items: flex-start;
margin: calc(20rem / 16); margin: calc(20rem / 16);
margin-left: 0;
} }
.navItem:first-child { .navItem:first-child {
@ -39,14 +37,19 @@
.nav h4 { .nav h4 {
color: var(--secondary-accent); color: var(--secondary-accent);
margin: 0 calc(14rem / 16) 0 0; margin: 0;
display: inline;
} }
.nav a { .nav a {
color: var(--primary-text); color: var(--primary-text);
} }
.nav a:hover { .nav a:hover p {
color: var(--primary-accent-light);
text-decoration: underline; text-decoration: underline;
} }
.nav p {
margin: 0;
display: inline;
}

View File

@ -8,20 +8,30 @@ interface SectionsData {
} }
interface SectionsProps { interface SectionsProps {
/* Whether to display the "Sections" title and separator that appears on the left. */
showHeader?: boolean;
data: SectionsData[]; data: SectionsData[];
} }
export default function Sections({ data }: SectionsProps) { export function Sections({ data, showHeader = true }: SectionsProps) {
return ( return (
<section className={styles.sections}> <section className={styles.sections}>
<h1>Sections</h1> {showHeader ? (
<div className={styles.separator} /> <>
<h1>Sections</h1>
<div className={styles.separator} />
</>
) : (
""
)}
<nav className={styles.nav}> <nav className={styles.nav}>
{data.map((datum, index) => { {data.map((datum, index) => {
return ( return (
<div key={`${datum.name}-${index}`} className={styles.navItem}> <div key={`${datum.name}-${index}`} className={styles.navItem}>
<h4>{String(index).padStart(2, "0")}</h4> <a href={datum.url}>
<a href={datum.url}>{datum.name}</a> <h4>{String(index).padStart(2, "0")} </h4>
<p>{datum.name}</p>
</a>
</div> </div>
); );
})} })}

View File

@ -3,7 +3,7 @@ import { mockCategoricalData, moreMockCategoricalData } from "data/mocks";
import { sectionsData } from "data/routes"; import { sectionsData } from "data/routes";
import React from "react"; import React from "react";
import Sections from "@/components/Sections"; import { Sections } from "@/components/Sections";
import { ColorPalette } from "../components/ColorPalette"; import { ColorPalette } from "../components/ColorPalette";
import { WordCloud } from "../components/WordCloud"; import { WordCloud } from "../components/WordCloud";
@ -65,8 +65,8 @@ export default function Home() {
<h2> <h2>
<code>{"<Sections />"}</code> <code>{"<Sections />"}</code>
<Sections data={sectionsData} />
</h2> </h2>
<Sections data={sectionsData} />
</div> </div>
); );
} }