add fade in effect on book club logo

This commit is contained in:
2025-04-17 19:45:43 +05:00
parent 0d860c44f4
commit b7da60a3ee
4 changed files with 75 additions and 5 deletions

View File

@ -436,6 +436,23 @@ section.book-club-benefits {
}
}
#by-somos-inf {
width: 100%;
padding: 50px 0;
text-align: center;
background-color: lightblue;
margin-top: 20px;
opacity: 0;
transition: all 0.5s ease-in-out;
&.show {
opacity: 1;
}
}
.logo-wrapper:hover #by-somos-inf {
opacity: 1;
}
footer.somos-infinitos-footer {
@include respond(desktop) { padding-inline: 114px; }
@include respond(mobile) { padding-inline: 3rem; }