Skip to content

Commit 90b6303

Browse files
committed
[dashboard] Fix bottom page margins for Prebuilds, Repositories and Insights
1 parent a92bffc commit 90b6303

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/dashboard/src/prebuilds/list/PrebuildListPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const PrebuildListPage = () => {
1212
useDocumentTitle("Prebuilds");
1313

1414
return (
15-
<div className="app-container mb-8">
15+
<div className="app-container pb-8">
1616
<PageHeading title="Prebuilds" subtitle="Review prebuilds of your added repositories." />
1717
<PrebuildsList />
1818
</div>

components/dashboard/src/repositories/list/RepositoryList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ const RepositoryListPage: FC = () => {
9292

9393
return (
9494
<>
95-
<div className="app-container mb-8">
95+
<div className="app-container pb-8">
9696
<PageHeading
9797
title="Repository settings"
9898
subtitle="Configure and refine the experience of working with a repository in Gitpod."

components/dashboard/src/repositories/list/RepositoryTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export const RepositoryTable: FC<Props> = ({
132132
</div>
133133
)}
134134

135-
<div className="mt-4 mb-8 flex flex-row justify-center">
135+
<div className="mt-4 flex flex-row justify-center">
136136
{hasNextPage ? (
137137
<LoadingButton variant="secondary" onClick={onLoadNextPage} loading={isFetchingNextPage}>
138138
Load more

0 commit comments

Comments
 (0)