diff --git a/client/src/pages/SolutionsLogicielles.tsx b/client/src/pages/SolutionsLogicielles.tsx index e13adda..7c3f81f 100644 --- a/client/src/pages/SolutionsLogicielles.tsx +++ b/client/src/pages/SolutionsLogicielles.tsx @@ -277,10 +277,15 @@ export default function SolutionsLogicielles() {
- {filtered.map((sol) => { + {filtered.map((sol, solIdx) => { + // Couleurs alternées : pair = blanc/gris très clair, impair = bleu très clair + const isEven = solIdx % 2 === 0; + const rowBg = isEven ? "bg-white hover:bg-blue-50/40" : "bg-blue-50/60 hover:bg-blue-100/50"; + const rowBgSpan = isEven ? "bg-white" : "bg-blue-50/60"; + if (sol.etablissements.length === 0) { return ( -