Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust default height and style of project cards #298

Merged
merged 2 commits into from
Jan 10, 2025
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
2 changes: 1 addition & 1 deletion ui/components/layout/CardGridContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export default function CardGridContainer({ children, className = '' }: any) {
return (
<div
id="card-grid-container"
className={`h-full w-full mb-10 grid grid-cols-1 min-[1100px]:grid-cols-2 min-[1450px]:grid-cols-3 mt-5 gap-5 items-start ${className}`}
className={`h-full w-full mb-10 grid grid-cols-1 min-[1100px]:grid-cols-2 min-[1450px]:grid-cols-3 mt-5 gap-5 items-stretch ${className}`}
>
{children}
</div>
Expand Down
2 changes: 1 addition & 1 deletion ui/components/project/ProjectCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const ProjectCardContent = memo(
return (
<div
id="card-container"
className="p-4 flex flex-col gap-2 relative bg-dark-cool w-full h-full rounded-2xl"
className="p-4 pb-10 flex flex-col gap-2 relative bg-dark-cool w-full h-full rounded-2xl flex-1 border-b-2 border-[#020617]"
>
<div className="flex justify-between">
<h1 className="font-GoodTimes">{project?.name || ''}</h1>
Expand Down
2 changes: 1 addition & 1 deletion ui/styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ html {
}

.popout-bg{
background: linear-gradient(90deg, #020617 5%, #090D21 60%);
background: linear-gradient(90deg, #020617 5%, #090D21 90%);
}

.innerprefooter-popout-bg {
Expand Down
Loading