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: prime sponsor button styling while hovering on it max-width of 800px #1293

Merged
merged 8 commits into from
Oct 11, 2023
8 changes: 3 additions & 5 deletions src/common/home/home.css
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@
cursor: pointer;
}
.prime-sponsors-cta {
width: 18%;
width: 18rem;
height: 5rem;
background-color: rgba(var(--color-brand-primary-rgb), 1);
padding: 1rem 1rem;
Expand All @@ -728,17 +728,15 @@
.heart-handshake {
opacity: 0;
transition: all 0.2s ease-in-out;
position: absolute;
right: 15px;
bottom: 13px;
position: absolute;
left: 13.5rem;
}
}
.prime-sponsors-cta:hover {
background-color: white;

.heart-handshake {
opacity: 1;
margin-left: 1rem;
}
}
}
Expand Down
Loading