Skip to content

Commit 2001f49

Browse files
committed
header links
1 parent 77c97c1 commit 2001f49

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

src/components/Conf/Pricing/index.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,9 @@ const includes = [
4949

5050
const PricingConf = () => {
5151
return (
52-
<div id="attend">
53-
<div className="bg-[#171E26] container mt-10 mb-6">
52+
// Invisible padding so anchor links align to the header menu
53+
<div id="attend" className="-mt-16 pt-16">
54+
<div className="bg-[#171E26] container mb-6">
5455
<div className="flex flex-col text-center w-full">
5556
<h1 className="text-4xl text-white font-bold">Attend</h1>
5657
</div>
@@ -113,11 +114,11 @@ const PricingConf = () => {
113114
Visa
114115
</a>{" "}
115116
or{" "}
116-
<a href="/conf/faq/#scholarships">
117+
<a href="/conf/faq/#scholarships">
117118
Scholarship
118119
</a>{" "}
119120
or find more help in our{" "}
120-
<a href="/conf/faq/">
121+
<a href="/conf/faq/">
121122
FAQ
122123
</a>
123124
.

src/components/Conf/Schedule/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ const Days: Day[] = [
2020
]
2121
const ScheduleGlanceConf = () => {
2222
return (
23-
<div id="schedule">
23+
// Invisible padding so anchor links align to the header menu
24+
<div id="schedule" className="-mt-16 pt-16">
2425
<div className="bg-[#171E26] w-full mt-10 mb-6">
2526
<div className="text-center mx-auto text-white">
2627
<h1 className="text-4xl text-white font-bold mb-8">Schedule</h1>

src/components/Conf/Speakers/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ const speakers: Speaker[] = [
4747

4848
const SpeakersConf = () => {
4949
return (
50+
// Invisible padding so anchor links align to the header menu
5051
<div id="speakers" className="-mt-16 pt-16">
5152
<div className="bg-[#171E26] w-full mt-8">
5253
<div className="text-center mx-auto text-white">

src/components/Conf/Venue/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import { ReactComponent as ParkingIcon } from "../../../../static/img/conf/parki
55

66
const VenueConf = () => {
77
return (
8-
<div id="location">
8+
// Invisible padding so anchor links align to the header menu
9+
<div id="location" className="-mt-16 pt-16">
910
<h1 className="text-4xl text-white font-bold mb-8 mx-auto text-center">
1011
Location &amp; Venue
1112
</h1>

0 commit comments

Comments
 (0)