Backup y detalles minimos

This commit is contained in:
2026-05-27 15:59:44 -03:00
parent 2302d3f550
commit b2e8021c02
10 changed files with 722 additions and 94 deletions
@@ -2,10 +2,10 @@
@php
$borderColor = match($color) {
'red' => 'border-l-red-500',
'yellow' => 'border-l-yellow-500',
'neon' => 'border-l-neon-lime',
default => 'border-l-gray-500'
'red' => 'border-l-red-500 dark:border-l-red-500',
'yellow' => 'border-l-yellow-500 dark:border-l-yellow-500',
'neon' => 'border-l-neon-lime dark:border-l-neon-lime',
default => 'border-l-gray-500 dark:border-l-gray-500'
};
@endphp