Skip to content
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

fix: CTA UI issue #273

Merged
merged 1 commit into from
Sep 11, 2023
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
2 changes: 1 addition & 1 deletion src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Footer = ()=> {
<FeedbackButtons />
{/* <SubscribeButton /> */}
<div className='footer-cta rounded'>
<div className='flex items-center justify-between'>
<div className='flex items-center justify-between flex-wrap'>
<h3 className='cta-heading m-0'>Learn how to execute low code tests across 3000+ device / browser environments.</h3>
<a href='/request-demo' target={'_blank'} className='cta-link border border-green-600 px-4 py-1.5 bg-green-600 text-white rounded h-10'>Schedule a free demo</a>
</div>
Expand Down
8 changes: 8 additions & 0 deletions src/components/Footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -323,14 +323,22 @@
.footer-cta{
background-color: #EFEFEF;
padding: 2rem 6rem;
@media only screen and (max-width: 767px) {
padding: 2rem;
}
.cta-heading{
flex: 0 0 70%;
font-size: 24px !important;
line-height: 38px !important;
margin: 0 !important;
@media only screen and (max-width: 767px) {
flex: 0 0 100%;
padding: 0 0 2rem;
}
}
.cta-link{
font-weight: 600;
font-size: 18px;
height: fit-content;
}
}
Loading
Loading