fix: correção na estilização da tabela sintética

This commit is contained in:
Alessandro Gonçaalves 2025-10-23 14:15:32 -03:00
parent bf38e52f72
commit a0b2e91d6a
1 changed files with 3 additions and 3 deletions

View File

@ -1337,14 +1337,14 @@ export default function Teste() {
if (isSelected) { if (isSelected) {
style += style +=
" bg-gradient-to-r from-blue-100 to-indigo-100 border-l-4 border-blue-500 shadow-lg"; " bg-gradient-to-r from-green-100 to-emerald-100 border-l-4 border-green-500 shadow-lg";
} }
switch (row.type) { switch (row.type) {
case "grupo": case "grupo":
if (isCalculado) { if (isCalculado) {
// Destacar grupos calculados com cor mais vibrante // Destacar grupos calculados com cor azul
return `${style} bg-gradient-to-r from-amber-100/80 to-yellow-100/80 font-bold text-gray-900 border-b-2 border-amber-300 shadow-sm`; return `${style} bg-gradient-to-r from-blue-100/80 to-indigo-100/80 font-bold text-gray-900 border-b-2 border-blue-300 shadow-sm`;
} }
return `${style} bg-gradient-to-r from-blue-50/20 to-indigo-50/20 font-bold text-gray-900 border-b-2 border-blue-200`; return `${style} bg-gradient-to-r from-blue-50/20 to-indigo-50/20 font-bold text-gray-900 border-b-2 border-blue-200`;
case "subgrupo": case "subgrupo":