Retire le fond/bordure des tuiles de logos dans les bandeaux de la home

Les logos flottent maintenant directement sur le fond de la page au lieu
d'être encadrés dans une carte, pour un rendu "trusted by" plus épuré.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
Esteban
2026-07-02 20:12:02 +02:00
co-authored by Claude Sonnet 5
parent 87cc4e5e9c
commit b5bacf04a9
+5 -6
View File
@@ -1349,6 +1349,8 @@ img {
} }
} }
/* Pas de fond/bordure : les logos flottent directement sur le fond de la page,
comme un bandeau "trusted by" classique */
.logo-tile { .logo-tile {
flex-shrink: 0; flex-shrink: 0;
display: flex; display: flex;
@@ -1357,17 +1359,14 @@ img {
width: 160px; width: 160px;
height: 90px; height: 90px;
padding: 18px 24px; padding: 18px 24px;
background: var(--surface); background: transparent;
border: 1px solid var(--border); border: none;
border-radius: var(--radius);
text-decoration: none; text-decoration: none;
transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease; transition: transform 0.2s ease;
} }
a.logo-tile:hover { a.logo-tile:hover {
transform: translateY(-3px); transform: translateY(-3px);
border-color: var(--accent-border);
background: var(--surface-2);
} }
.logo-tile img { .logo-tile img {