Skip to content

Commit

Permalink
fix: minor ui fix
Browse files Browse the repository at this point in the history
  • Loading branch information
radityaharya committed Oct 22, 2024
1 parent afc6e52 commit 881e127
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/workflows/RunsGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ function RunProgress({ runId }: { runId: string }) {
}

const EmptyRunCard = () => (
<Card className="w-full xl:w-[300px]">
<Card className="w-full">
<CardHeader className="pb-2">
<CardTitle></CardTitle>
</CardHeader>
Expand Down
2 changes: 1 addition & 1 deletion src/app/workflows/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default async function Dashboard() {
}

return (
<div className="flex w-full flex-col h-full">
<div className="flex w-full flex-col min-h-screen">
<div className="flex flex-col sm:gap-4 sm:py-4">
<main className="gap-4 p-4 md:gap-8 sm:px-6 sm:py-0">
<div className="items-start w-full flex flex-col-reverse xl:flex-row gap-4 md:gap-8">
Expand Down
1 change: 1 addition & 0 deletions src/components/main-footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ export default function Footer() {
className={cn(
"z-[20] flex w-full flex-col border-t bg-accent/10 items-start justify-between px-4 md:px-10 py-6 backdrop-blur-md",
/\/workflow(?!s)/.test(pathname) ? "hidden" : "",
/\/auth/.test(pathname) ? "hidden" : "",
)}
>
<div className="flex flex-col gap-6 w-full mb-4">
Expand Down

0 comments on commit 881e127

Please sign in to comment.