Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/kodecosmo/ko-de.org
Browse files Browse the repository at this point in the history
  • Loading branch information
Kavirubc committed Nov 22, 2023
2 parents 54ee945 + 8b9c71f commit b6c5649
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/components/ProjectCard.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Link from "next/link";

const ProjectCard = ({ imgUrl, title, description, gitUrl, previewUrl }) => {
return (
<div>
<div className="mt-6">
<div
className="h-52 md:h-72 rounded-t-xl relative group"
style={{ background: `url(${imgUrl})`, backgroundSize: "cover" }}
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/ProjectTag.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const ProjectTag = ({ name, onClick, isSelected }) => {
: "text-[#ADB7BE] border-slate-600 hover:border-white";
return (
<button
className={`${buttonStyles} rounded-full border-2 px-6 py-3 text-xl cursor-pointer`}
className={`${buttonStyles} rounded-full border-2 px-7 py-3 text-xl cursor-pointer`}
onClick={() => onClick(name)}
>
{name}
Expand Down
2 changes: 1 addition & 1 deletion src/app/components/ProjectsSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const ProjectsSection = () => {
<h2 className="text-center text-4xl font-bold text-white mt-4 mb-8 md:mb-12">
Projects
</h2>
<div className="text-white flex flex-row justify-center items-center gap-2 py-6">
<div className="text-white flex flex-row justify-center items-center gap-5 py-6">
<ProjectTag
onClick={handleTagChange}
name="All"
Expand Down

0 comments on commit b6c5649

Please sign in to comment.