Fix: remplacer custom media queries par valeurs en dur, retirer postcss-custom-media
All checks were successful
Deploy / Deploy to Production (push) Successful in 5m23s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
isUnknown 2026-03-10 18:55:37 +01:00
parent 4a6363273e
commit b9631b8c53
12 changed files with 16 additions and 145 deletions

View file

@ -166,7 +166,7 @@
}
/* Mobile — var(--breakpoint-mobile) = 700px */
@media (--mobile) {
@media (max-width: 700px) {
.navbar {
min-height: 8vh;
padding: 10vh 0 1vh;
@ -179,7 +179,7 @@
}
/* Tablet — var(--breakpoint-tablet) = 912px */
@media (--tablet-only) {
@media (min-width: 701px) and (max-width: 912px) {
.navbar-item {
font-size: var(--font-size-paragraph-tablet);
padding: 1vmax 1.8vmax;

View file

@ -244,7 +244,7 @@
}
/* Mobile — var(--breakpoint-mobile) = 700px */
@media (--mobile) {
@media (max-width: 700px) {
.menu-list {
font-size: var(--font-size-subtitle-mobile);
grid-area: 6/4 / span 8 / span 8;
@ -269,7 +269,7 @@
}
/* Tablet — var(--breakpoint-tablet) = 912px */
@media (--tablet-only) {
@media (min-width: 701px) and (max-width: 912px) {
.menu-list {
font-size: var(--font-size-title-section-tablet);
}