Skip to content

Commit

Permalink
3 files modified
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffHenry committed Aug 5, 2023
1 parent 0c67603 commit d81192f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/general/ProjectsWrapper.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ import ProjectCard from "./ProjectCard.astro";
const { projects } = Astro.props as IProjects;
---

<div class="grid md:grid-cols-2 grid-cols-1 gap-4 my-16">
<div class="grid md:grid-cols-3 grid-cols-1 gap-4 my-16">
{projects.map((project) => <ProjectCard projectDetail={project} />)}
</div>
2 changes: 1 addition & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const featureProjects = info.projects.reduce((accumulator, project) => {
<Experience title={"SKILLS AND LANGUAGES"} details={info.skills} />
<section>
<h2 class="w-[15rem] dark:text-light mt-16">FEATURE PROJECTS</h2>
<ProjectsWrapper projects={featureProjects} />
<ProjectsWrapper projects={featureProjects}/>
</section>
</Layout>
</body>
Expand Down
8 changes: 4 additions & 4 deletions src/styles/custom-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
}

.pic-container {
border-radius: 100%;
width: 200px;
height: 200px;
width: 250px;
height: 250px;
margin: 0 auto;
}

.profile-pic {
margin: 0 auto;
border-radius: 100%;
}

0 comments on commit d81192f

Please sign in to comment.