fix: adjust size of cards and add ssh keys

This commit is contained in:
Mauricio Siu
2025-01-12 23:51:57 -06:00
parent 48e6c40a38
commit dbca102178
3 changed files with 4 additions and 6 deletions

View File

@@ -117,7 +117,7 @@ export const ShowProjects = () => {
</span>
</div>
)}
<div className="w-full grid sm:grid-cols-2 lg:grid-cols-4 flex-wrap gap-5">
<div className="w-full grid sm:grid-cols-1 lg:grid-cols-2 xl:grid-cols-4 flex-wrap gap-5">
{filteredProjects?.map((project) => {
const emptyServices =
project?.mariadb.length === 0 &&
@@ -145,7 +145,7 @@ export const ShowProjects = () => {
<Link
href={`/dashboard/project/${project.projectId}`}
>
<Card className="group relative w-full bg-transparent transition-colors hover:bg-border">
<Card className="group relative w-full h-full bg-transparent transition-colors hover:bg-border">
<Button
className="absolute -right-3 -top-3 size-9 translate-y-1 rounded-full p-0 opacity-0 transition-all duration-200 group-hover:translate-y-0 group-hover:opacity-100"
size="sm"