FEATURE Enhancing responsiveness
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Antoine M 2026-03-17 15:54:42 +01:00
parent af540c312e
commit 147886dd68

View File

@ -4,8 +4,9 @@
}
.press-ressources {
@apply px-4 md:px-8 lg:px-16;
.contact-persons {
@apply px-16 max-w-screen-lg mx-auto;
@apply max-w-screen-lg mx-auto;
&__list {
@apply grid grid-cols-1 md:grid-cols-2 gap-8;
}
@ -187,17 +188,29 @@
}
&__inner {
@apply grid gap-8;
grid-template-columns: 250px 3fr;
grid-template-columns: 1fr;
@screen lg {
grid-template-columns: 250px 3fr;
}
}
aside {
ul.presse-reviews__years-list {
@apply sticky top-0;
li.presse-reviews__year {
@apply list-none border border-primary border-solid p-6 text-4xl fjalla;
}
li.presse-reviews__year + li.presse-reviews__year {
@apply mt-4;
}
@media (max-width: 1024px) {
@apply flex items-center gap-4;
li.presse-reviews__year {
@apply !mt-0;
}
}
}
}