Add breathing room above Infrastructure KPI status cards
This commit is contained in:
parent
54b7aa1e32
commit
4cd6d31467
2 changed files with 2 additions and 2 deletions
|
|
@ -50,7 +50,7 @@ function App() {
|
|||
|
||||
<section
|
||||
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>
|
||||
<Route path="/" element={<Glance />} />
|
||||
|
|
|
|||
|
|
@ -160,7 +160,7 @@ export default function Infrastructure() {
|
|||
</div>
|
||||
|
||||
{/* 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) => {
|
||||
const Icon = card.icon
|
||||
return (
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue