Add breathing room above Infrastructure KPI status cards

This commit is contained in:
Claude 2026-06-18 16:53:55 +00:00
parent 54b7aa1e32
commit 4cd6d31467
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -50,7 +50,7 @@ function App() {
<section <section
className="relative flex w-full flex-col overflow-hidden" className="relative flex w-full flex-col overflow-hidden"
style={{ height: 'calc(100vh - 56px)', scrollbarWidth: 'none', padding: '16px 24px 24px 24px', gap: '20px', zIndex: 1 }} style={{ height: 'calc(100vh - 56px)', scrollbarWidth: 'none', padding: showHero ? '40px 24px 24px 24px' : '16px 24px 24px 24px', gap: '20px', zIndex: 1 }}
> >
<Routes> <Routes>
<Route path="/" element={<Glance />} /> <Route path="/" element={<Glance />} />

View file

@ -160,7 +160,7 @@ export default function Infrastructure() {
</div> </div>
{/* Status Cards */} {/* Status Cards */}
<div className="grid w-full grid-cols-5 gap-5 shrink-0"> <div className="grid w-full grid-cols-5 gap-5 shrink-0" style={{ marginTop: '8px' }}>
{statusCards.map((card) => { {statusCards.map((card) => {
const Icon = card.icon const Icon = card.icon
return ( return (