Hot Fix responsive font
This commit is contained in:
parent
ddbcdd4e67
commit
461a75c70a
@ -15,9 +15,9 @@ const ContactFormSection = ({
|
|||||||
</div>
|
</div>
|
||||||
<div className="relative z-10 flex flex-col items-center justify-center h-full">
|
<div className="relative z-10 flex flex-col items-center justify-center h-full">
|
||||||
<div className="relative flex justify-center items-end w-full mb-20">
|
<div className="relative flex justify-center items-end w-full mb-20">
|
||||||
<h1 className="text-6xl font-normal text-white">{text}</h1>
|
<h1 className="lg:text-5xl md:text-4xl sm:text-3xl text-3xl text-center text-white break-normal">{text}</h1>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex justify-start space-x-4">
|
<div className="flex justify-start space-x-4 text-center text-white break-normal">
|
||||||
<ContactButton
|
<ContactButton
|
||||||
buttonText={buttonText}
|
buttonText={buttonText}
|
||||||
email={email}
|
email={email}
|
||||||
|
@ -79,13 +79,23 @@ const Section = ({
|
|||||||
)}
|
)}
|
||||||
<div className="relative z-10 flex flex-col items-center justify-center h-full">
|
<div className="relative z-10 flex flex-col items-center justify-center h-full">
|
||||||
<div className="relative flex justify-center items-end w-full mb-20">
|
<div className="relative flex justify-center items-end w-full mb-20">
|
||||||
<Heading className={`text-6xl font-normal text-white ${isMobile ? 'text-4xl md:text-5xl mx-4 px-2' : ''}`}>{text}</Heading>
|
<Heading
|
||||||
|
className="lg:text-5xl md:text-4xl sm:text-3xl text-3xl text-center text-white break-normal"
|
||||||
|
>
|
||||||
|
{text}
|
||||||
|
</Heading>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex justify-start space-x-4">
|
<div className="flex justify-start space-x-4">
|
||||||
{isMobile && !hasInteracted ? (
|
{isMobile && !hasInteracted ? (
|
||||||
<VideoButton buttonVideoURL={buttonVideoURL} buttonOneText={buttonOneText} />
|
<VideoButton
|
||||||
|
buttonVideoURL={buttonVideoURL}
|
||||||
|
buttonOneText={buttonOneText}
|
||||||
|
/>
|
||||||
) : (
|
) : (
|
||||||
<VideoButton buttonVideoURL={buttonVideoURL} buttonOneText={buttonOneText} />
|
<VideoButton
|
||||||
|
buttonVideoURL={buttonVideoURL}
|
||||||
|
buttonOneText={buttonOneText}
|
||||||
|
/>
|
||||||
)}
|
)}
|
||||||
{buttonLink && (
|
{buttonLink && (
|
||||||
<Link
|
<Link
|
||||||
|
@ -15,7 +15,7 @@ const SectionTwo = ({
|
|||||||
</div>
|
</div>
|
||||||
<div className="relative z-10 flex flex-col items-center justify-center h-full">
|
<div className="relative z-10 flex flex-col items-center justify-center h-full">
|
||||||
<div className="relative flex justify-center items-end w-full mb-20">
|
<div className="relative flex justify-center items-end w-full mb-20">
|
||||||
<h1 className="text-6xl font-normal text-white">{text}</h1>
|
<h1 className="lg:text-5xl md:text-4xl sm:text-3xl text-3xl text-center text-white break-normal">{text}</h1>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex justify-start space-x-4">
|
<div className="flex justify-start space-x-4">
|
||||||
<Button
|
<Button
|
||||||
|
@ -60,7 +60,13 @@ module.exports = {
|
|||||||
"overflow-auto",
|
"overflow-auto",
|
||||||
"overflow-hidden",
|
"overflow-hidden",
|
||||||
"scrollbar-hidden",
|
"scrollbar-hidden",
|
||||||
|
"text-xl",
|
||||||
|
"text-2xl",
|
||||||
|
"text-lg",
|
||||||
|
"md:",
|
||||||
|
"text-sm",
|
||||||
|
"sm:",
|
||||||
|
"text-3xl",
|
||||||
],
|
],
|
||||||
theme: {
|
theme: {
|
||||||
extend: {
|
extend: {
|
||||||
|
Reference in New Issue
Block a user