diff --git a/src/pages/Infrastructure.tsx b/src/pages/Infrastructure.tsx index d426b0e..7a376f1 100644 --- a/src/pages/Infrastructure.tsx +++ b/src/pages/Infrastructure.tsx @@ -87,6 +87,13 @@ const cardVignette: React.CSSProperties = { background: 'radial-gradient(ellipse closest-side at center, transparent 70%, var(--color-page) 100%)', } +const cardDim: React.CSSProperties = { + position: 'absolute', + inset: 0, + pointerEvents: 'none', + backgroundColor: 'rgba(8, 8, 10, 0.45)', +} + const distributionData = [ { name: 'Compute', value: 42, color: '#C8A434' }, { name: 'Storage', value: 28, color: '#E67E22' }, @@ -178,18 +185,15 @@ export default function Infrastructure() { {statusCards.map((card) => { const Icon = card.icon return ( -
{card.sub}
+{card.sub}