Skip to content

Commit 543675c

Browse files
gtsiolisroboquat
authored andcommitted
Add bottom padding for projects, branches, and prebuilds
1 parent 97463da commit 543675c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

components/dashboard/src/projects/Prebuilds.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ export default function () {
185185
<span>Branch</span>
186186
</ItemField>
187187
</Item>
188-
{isLoadingPrebuilds && <div className="flex items-center justify-center space-x-2 text-gray-400 text-sm pt-16">
188+
{isLoadingPrebuilds && <div className="flex items-center justify-center space-x-2 text-gray-400 text-sm pt-16 pb-40">
189189
<img alt="" className="h-4 w-4 animate-spin" src={Spinner} />
190190
<span>Fetching prebuilds...</span>
191191
</div>}

components/dashboard/src/projects/Project.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ export default function () {
215215
<span>Prebuild</span>
216216
</ItemField>
217217
</Item>
218-
{isLoadingBranches && <div className="flex items-center justify-center space-x-2 text-gray-400 text-sm pt-16">
218+
{isLoadingBranches && <div className="flex items-center justify-center space-x-2 text-gray-400 text-sm pt-16 pb-40">
219219
<img className="h-4 w-4 animate-spin" src={Spinner} />
220220
<span>Fetching repository branches...</span>
221221
</div>}

components/dashboard/src/projects/Projects.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export default function () {
150150
{team && <Link to="./members" className="flex"><button className="ml-2 secondary">Invite Members</button></Link>}
151151
<button className="ml-2" onClick={() => onNewProject()}>New Project</button>
152152
</div>
153-
<div className="mt-4 grid grid-cols-3 gap-4">
153+
<div className="mt-4 grid grid-cols-3 gap-4 pb-40">
154154
{projects.filter(filter).sort(hasNewerPrebuild).map(p => (<div key={`project-${p.id}`} className="h-52">
155155
<div className="h-42 border border-gray-100 dark:border-gray-800 rounded-t-xl">
156156
<div className="h-32 p-6">

0 commit comments

Comments
 (0)