Skip to content

fixes for conf page #1866

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/app/conf/2025/index.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.faq {
/* Safari specific style - we are using icon for consistency */
details summary::-webkit-details-marker {
display: none;
}
}
6 changes: 4 additions & 2 deletions src/app/conf/2025/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import {
ExternalLink,
ArrowRight,
} from "lucide-react"
import styles from "./index.module.css"
import clsx from "clsx"

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

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

<div className="">
<div>
{FAQS.map((faq, index) => (
<details
key={index}
Expand Down
Loading