Skip to content
Merged
Show file tree
Hide file tree
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 components/dashboard/src/Insights.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const Insights = () => {
return (
<>
<Header title="Insights" subtitle="Insights into workspace sessions in your organization" />
<div className="app-container pt-5">
<div className="app-container pt-5 pb-8">
<div
className={classNames(
"flex flex-col items-start space-y-3 justify-between",
Expand Down Expand Up @@ -142,7 +142,7 @@ export const Insights = () => {
</ItemsList>
</div>

<div className="mt-4 mb-8 flex flex-row justify-center">
<div className="mt-4 flex flex-row justify-center">
{hasNextPage ? (
<LoadingButton
variant="secondary"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const PrebuildListPage = () => {
useDocumentTitle("Prebuilds");

return (
<div className="app-container mb-8">
<div className="app-container pb-8">
<PageHeading title="Prebuilds" subtitle="Review prebuilds of your added repositories." />
<PrebuildsList />
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const RepositoryListPage: FC = () => {

return (
<>
<div className="app-container mb-8">
<div className="app-container pb-8">
<PageHeading
title="Repository settings"
subtitle="Configure and refine the experience of working with a repository in Gitpod."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export const RepositoryTable: FC<Props> = ({
</div>
)}

<div className="mt-4 mb-8 flex flex-row justify-center">
<div className="mt-4 flex flex-row justify-center">
{hasNextPage ? (
<LoadingButton variant="secondary" onClick={onLoadNextPage} loading={isFetchingNextPage}>
Load more
Expand Down
Loading