Skip to content

Commit be9e7a8

Browse files
[dashboard] Fix bottom page margins for Prebuilds, Repositories and Insights (#20455)
* [dashboard] Fix bottom page margins for Prebuilds, Repositories and Insights * Fix `/insights` as well I forgor initially 💀
1 parent a92bffc commit be9e7a8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

components/dashboard/src/Insights.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export const Insights = () => {
5656
return (
5757
<>
5858
<Header title="Insights" subtitle="Insights into workspace sessions in your organization" />
59-
<div className="app-container pt-5">
59+
<div className="app-container pt-5 pb-8">
6060
<div
6161
className={classNames(
6262
"flex flex-col items-start space-y-3 justify-between",
@@ -142,7 +142,7 @@ export const Insights = () => {
142142
</ItemsList>
143143
</div>
144144

145-
<div className="mt-4 mb-8 flex flex-row justify-center">
145+
<div className="mt-4 flex flex-row justify-center">
146146
{hasNextPage ? (
147147
<LoadingButton
148148
variant="secondary"

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)