Compare commits
No commits in common. "93c2e9662a3ef7e10e45b2eda82ae0b9cc82a840" and "a706f065a74f5cb901c239a99f8812c0be261d2e" have entirely different histories.
93c2e9662a
...
a706f065a7
|
Before Width: | Height: | Size: 1.8 MiB After Width: | Height: | Size: 1.8 MiB |
|
Before Width: | Height: | Size: 167 KiB After Width: | Height: | Size: 168 KiB |
|
Before Width: | Height: | Size: 367 KiB After Width: | Height: | Size: 368 KiB |
|
Before Width: | Height: | Size: 78 KiB After Width: | Height: | Size: 78 KiB |
|
Before Width: | Height: | Size: 74 KiB |
|
Before Width: | Height: | Size: 2.7 MiB |
|
Before Width: | Height: | Size: 3.5 MiB |
|
Before Width: | Height: | Size: 3.7 MiB |
|
Before Width: | Height: | Size: 2.7 MiB |
@ -49,7 +49,6 @@
|
|||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
display: flex;
|
display: flex;
|
||||||
padding: 0 4%;
|
padding: 0 4%;
|
||||||
gap: 5%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.project-details-content {
|
.project-details-content {
|
||||||
@ -171,10 +170,3 @@ aside ul li a:hover {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 0.5em;
|
gap: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.project-details-image {
|
|
||||||
width: 100%;
|
|
||||||
margin-bottom: 2%;
|
|
||||||
}
|
|
||||||
@ -91,9 +91,7 @@ function ProjectDetails({project}) {
|
|||||||
>
|
>
|
||||||
{project.long_description}
|
{project.long_description}
|
||||||
</ReactMarkdown>
|
</ReactMarkdown>
|
||||||
{[...Array(project.nb_image)].map((_, i) => (
|
|
||||||
<img src={`/assets/images/projects/${project.image_name}/${project.image_name}_${i+1}.png`} alt={project.image_name} className="project-details-image"/>
|
|
||||||
))}
|
|
||||||
</div>
|
</div>
|
||||||
<aside>
|
<aside>
|
||||||
<ul>
|
<ul>
|
||||||
|
|||||||