Skip to content

Commit

Permalink
fix(deploy-web): fix spacing for uptime (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
baktun14 authored Jun 3, 2024
1 parent 64a05d9 commit 3f7193a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/deploy-web/src/components/providers/ProviderDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export const ProviderDetail: React.FunctionComponent<Props> = ({ owner, _provide
/>
</div>

<div className="grid grid-cols-1 gap-4 space-y-4 md:grid-cols-2">
<div className="grid grid-cols-1 gap-4 space-y-4 lg:grid-cols-2">
<div className="basis-1/2">
<ActiveLeasesGraph provider={provider} />
</div>
Expand All @@ -153,7 +153,7 @@ export const ProviderDetail: React.FunctionComponent<Props> = ({ owner, _provide
<Title subTitle className="mb-2 font-normal tracking-tight">
Up time <span className="ml-1 text-sm">(24h)</span>
</Title>
<div className="flex items-center space-x-1">
<div className="flex items-center space-x-[1px] lg:space-x-[2px]">
{uptimePeriods.map(x => (
<CustomNoDivTooltip
key={x.date.toISOString()}
Expand Down

0 comments on commit 3f7193a

Please sign in to comment.