style: Adjust node summary card styling and grid responsiveness

This commit is contained in:
courtmanr@gmail.com
2025-05-20 10:23:00 +01:00
parent d01471e790
commit a4277fa0e9
+1 -1
View File
@@ -16,7 +16,7 @@ PulseApp.utils = (() => {
}[color] || 'bg-gray-500/50'; // Fallback progress color with opacity
return `
<div class="relative w-full h-4 rounded overflow-hidden ${bgColorClass}">
<div class="relative w-full h-3.5 rounded overflow-hidden ${bgColorClass}">
<div class="absolute top-0 left-0 h-full ${progressColorClass}" style="width: ${percentage}%;"></div>
<span class="absolute inset-0 flex items-center justify-center text-[10px] font-medium text-gray-800 dark:text-gray-100 leading-none">${text}</span>
</div>