Skip to content

Commit 9df917c

Browse files
authored
fixes for conf page (#1866)
* fix: faq link * remove safari specific style
1 parent 016f8f6 commit 9df917c

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

src/app/conf/2025/index.module.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.faq {
2+
/* Safari specific style - we are using icon for consistency */
3+
details summary::-webkit-details-marker {
4+
display: none;
5+
}
6+
}

src/app/conf/2025/page.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ import {
1111
ExternalLink,
1212
ArrowRight,
1313
} from "lucide-react"
14+
import styles from "./index.module.css"
15+
import clsx from "clsx"
1416

1517
const rubik = Rubik({
1618
weight: ["700", "600", "500", "400", "300"],
@@ -158,7 +160,7 @@ const FAQS = [
158160

159161
function FAQSection() {
160162
return (
161-
<div className="text-white py-16 px-4 md:px-8">
163+
<div id="faq" className={clsx("text-white py-16 px-4 md:px-8", styles.faq)}>
162164
<div className="max-w-7xl mx-auto grid md:grid-cols-2 gap-12">
163165
<div>
164166
<h2 className="text-4xl md:text-5xl font-bold mb-4">
@@ -177,7 +179,7 @@ function FAQSection() {
177179
</p>
178180
</div>
179181

180-
<div className="">
182+
<div>
181183
{FAQS.map((faq, index) => (
182184
<details
183185
key={index}

0 commit comments

Comments
 (0)