fix: modification visuel du frontend au niveau du formulaire de contact pour qu'il s'armonise avec le css global.

fix : update du backend avec ajout de la suppression d'un projet.
This commit is contained in:
toine 2025-10-04 11:03:08 +02:00
parent ef1ba911d9
commit 542e00482b
9 changed files with 68 additions and 15 deletions

View file

@ -121,6 +121,10 @@ hr {
color: var(--color-muted, #6b7280);
}
footer {
background: var(--color-surface);
}
/* Fin: préférences de mouvement */
@media (prefers-reduced-motion: reduce) {
* {
@ -128,4 +132,22 @@ hr {
transition: none !important;
scroll-behavior: auto !important;
}
}
}
/* Sticky footer (hidden at top, visible on scroll) */
.sticky-footer {
position: fixed;
left: 0;
right: 0;
bottom: 0;
transform: translateY(100%);
transition: transform 0.3s ease;
z-index: 40;
pointer-events: none; /* prevent blocking clicks when hidden */
}
.sticky-footer.is-visible {
transform: translateY(0);
box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
pointer-events: auto;
}