Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions web/components/service/details/deployment-canvas.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ export function DeploymentCanvas({ service }: DeploymentCanvasProps) {
if (service.deployments.length === 0) {
return (
<>
<div className="flex flex-col items-center justify-center py-12 md:hidden">
<div className="flex flex-col items-center justify-center pt-8 pb-12 md:hidden">
<div className="w-16 h-16 mx-auto rounded-2xl bg-slate-100 dark:bg-slate-800 flex items-center justify-center">
<Box className="h-8 w-8 text-slate-400" />
</div>
Expand Down Expand Up @@ -335,7 +335,7 @@ export function DeploymentCanvas({ service }: DeploymentCanvasProps) {

return (
<>
<div className="flex flex-col gap-4 py-4 md:hidden">
<div className="flex flex-col gap-4 pb-4 md:hidden">
{hasEndpoints && (
<EndpointsCard
publicPorts={publicPorts}
Expand Down