Skip to content

Commit

Permalink
added border to grid display of projects (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
KcPele authored Oct 12, 2023
1 parent 2350a00 commit 1692e4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nextjs/components/projects/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const Card = ({ project, display }: any) => {
return (
<div>
{display === "grids" ? (
<div className="rounded-[1.5em] p-2 bg-base-100">
<div className="rounded-[1.5em] p-2 bg-base-100 border-gray-300 border ">
<div className="relative overflow-hidden bg-cover bg-no-repeat">
{projectBannerUrl ? (
<Image
Expand Down Expand Up @@ -55,7 +55,7 @@ const Card = ({ project, display }: any) => {
</div>
</div>
) : (
<div className="flex border rounded-[1.5rem] border-gray-300 p-4 ">
<div className="flex border rounded-[1.5rem] border-gray-300 p-4 ">
<Image
width={54}
height={54}
Expand Down

0 comments on commit 1692e4b

Please sign in to comment.