fix: decrease the padding for FAQ and features sections for mobile devices

This commit is contained in:
Dorian Niemiec 2024-11-08 09:43:34 +01:00
parent b13a237b38
commit 6a4de8dcfd
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ function FAQ() {
const ref = useRef({}); const ref = useRef({});
return ( return (
<section className="mx-auto px-3 py-24 max-w-screen-xl"> <section className="mx-auto px-3 py-16 md:py-24 max-w-screen-xl">
<h2 className="text-center font-bold text-4xl md:text-5xl hyphens-auto mb-4"> <h2 className="text-center font-bold text-4xl md:text-5xl hyphens-auto mb-4">
Frequently Asked Questions Frequently Asked Questions
</h2> </h2>

View file

@ -2,7 +2,7 @@ import { features } from "@/constants";
function Features() { function Features() {
return ( return (
<section className="mx-auto px-3 py-24 max-w-screen-xl"> <section className="mx-auto px-3 py-16 md:py-24 max-w-screen-xl">
<h2 className="text-center font-bold text-4xl md:text-5xl hyphens-auto"> <h2 className="text-center font-bold text-4xl md:text-5xl hyphens-auto">
Experience Effortless <span className="text-primary">Email</span> Experience Effortless <span className="text-primary">Email</span>
</h2> </h2>