Compare commits

...

3 Commits

Author SHA1 Message Date
Antoine M
cb631571e9 STYLE Handling secondary logo behaviour
All checks were successful
continuous-integration/drone/push Build is passing
2025-09-30 16:51:06 +02:00
Antoine M
a414f768b4 STYLE Refine responsive behaviour 2025-09-30 16:50:44 +02:00
Antoine M
ddab35e153 STYLE FIX for title sizes coherence 2025-09-30 16:50:25 +02:00
3 changed files with 29 additions and 3 deletions

View File

@ -147,7 +147,8 @@
}
}
&__title {
@apply text-base font-extrabold uppercase pb-8 tracking-widest nunito;
@apply uppercase nunito text-xl font-bold pb-8 tracking-widest;
letter-spacing: 4px;
}
&__show-all {
@apply text-base font-extrabold uppercase pb-8 tracking-widest nunito text-primary text-center mx-auto block mt-12;

View File

@ -1,5 +1,5 @@
button#scroll-top {
@apply hidden lg:block fixed lg:bottom-8 lg:right-12 bottom-4 right-4 bg-white border-2 border-solid border-primary text-primary rounded-full p-4 z-50;
@apply hidden md:block fixed lg:bottom-8 lg:right-12 bottom-4 right-4 bg-white border-2 border-solid border-primary text-primary rounded-full p-4 z-50;
img {
@apply h-6 w-6;

View File

@ -3,7 +3,32 @@ header {
}
.website_logo {
@apply w-72 h-auto;
@apply w-72 h-auto relative;
#secondary-logo {
@apply absolute top-0 left-0 w-full h-auto opacity-0 transition-opacity duration-300 ease-in-out;
}
&.has-secondary-logo {
.custom-logo-link,
#secondary-logo {
@apply transition-opacity duration-300 ease-out;
}
.custom-logo-link {
@apply opacity-100;
}
#secondary-logo {
@apply opacity-0 pointer-events-none;
}
}
&.has-secondary-logo:hover {
.custom-logo-link {
@apply opacity-0;
}
#secondary-logo {
@apply opacity-100;
}
}
}
.tools-container {