Skip to content

Commit e435fbd

Browse files
committed
remove safari specific style
1 parent c74308a commit e435fbd

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
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: 3 additions & 1 deletion
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 id="faq" 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">

0 commit comments

Comments
 (0)