fix(ui) : texte du DataTable en noir par défaut

Header et body passent de text-m-primary (bleu) à text-black, cohérent
avec les bordures du tableau.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-08 16:05:30 +02:00
parent eb7677ae09
commit 4bb152d87d
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -14,7 +14,7 @@
:name="`header-${col.key}`"
:column="col"
/>
<span v-else class="font-semibold text-m-primary">{{ col.label }}</span>
<span v-else class="font-semibold text-black">{{ col.label }}</span>
</th>
</tr>
</thead>
@@ -32,7 +32,7 @@
<td
v-for="col in columns"
:key="col.key"
class="px-3 py-4 text-[14px] text-m-primary"
class="px-3 py-4 text-[14px] text-black"
:class="index < items.length - 1 ? 'border-b border-black' : ''"
>
<slot