-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #161 from HaudinFlorence/revert_changes_related_to…
…_alignments_on_PR_160 Revert changes made in PR 160 related to style on projects page
- Loading branch information
Showing
3 changed files
with
17 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,20 @@ | ||
import { projectsDetails } from "./descriptions/projectsDetails"; | ||
import ProjectCard from "./ProjectCard"; | ||
import ProjectCard from "./ProjectCard" | ||
|
||
export default function AllProjects() { | ||
return ( | ||
<div | ||
className="container flex-full-centered" | ||
style={{ marginBottom: "var(--ifm-spacing-3xl)" }} | ||
> | ||
<ul className="row --no-gutters"> | ||
{projectsDetails.map((project, index) => { | ||
return ( | ||
<li | ||
className="projects-list" | ||
key={index} | ||
|
||
> | ||
<div className="col" style={{ paddingLeft: "0" }}> | ||
<ProjectCard project={project} /> | ||
</div> | ||
</li> | ||
); | ||
<div className="container flex-full-centered" style={{marginBottom: "var(--ifm-spacing-3xl)"}}> | ||
<ul className="row"> | ||
{projectsDetails.map((project, index) => { | ||
return( | ||
<li className="projects-list" key={index}> | ||
<div className="col"> | ||
<ProjectCard project={project}/> | ||
</div> | ||
</li> | ||
) | ||
})} | ||
</ul> | ||
</div> | ||
); | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters