fix: decrease the padding for FAQ and features sections for mobile devices
This commit is contained in:
parent
b13a237b38
commit
6a4de8dcfd
2 changed files with 2 additions and 2 deletions
|
@ -9,7 +9,7 @@ function FAQ() {
|
|||
const ref = useRef({});
|
||||
|
||||
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">
|
||||
Frequently Asked Questions
|
||||
</h2>
|
||||
|
|
|
@ -2,7 +2,7 @@ import { features } from "@/constants";
|
|||
|
||||
function Features() {
|
||||
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">
|
||||
Experience Effortless <span className="text-primary">Email</span>
|
||||
</h2>
|
||||
|
|
Loading…
Reference in a new issue