1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-03 18:06:38 -04:00

make sticky header optional via prop

This commit is contained in:
2022-02-16 10:30:18 -05:00
parent b6c018875f
commit 17104d765b
14 changed files with 116 additions and 120 deletions

View File

@ -1,3 +1,5 @@
/* eslint-disable camelcase */
import { NextSeo } from "next-seo";
import Content from "../components/Content/Content";
import PageTitle from "../components/PageTitle/PageTitle";
@ -6,7 +8,6 @@ import Figure from "../components/Figure/Figure";
import IFrame from "../components/IFrame/IFrame";
import HorizontalRule from "../components/HorizontalRule/HorizontalRule";
/* eslint-disable camelcase */
import img_wayback from "../public/static/images/previously/wayback.png";
import img_2002_02 from "../public/static/images/previously/2002_02.png";
import img_2002_10 from "../public/static/images/previously/2002_10.png";
@ -55,7 +56,7 @@ const Previously = () => (
<p>
🚨 <strong>Trigger warning:</strong> marquees, Comic Sans MS, popups,{" "}
<code>
color: <span className="limegreen">limegreen</span>
color: <span style={{ color: "#32cd32" }}>limegreen</span>
</code>
...{" "}
<Link href="/y2k/" prefetch={false}>
@ -206,9 +207,6 @@ const Previously = () => (
iframe {
margin-bottom: 0.6em !important;
}
.limegreen {
color: #32cd32;
}
`}</style>
</>
);