Skip to content

Commit 1cc15f5

Browse files
committed
style: update project info container to take up all available space
1 parent 5643f0f commit 1cc15f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/ProjectDetailWindow/ProjectDetailWindow.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const ProjectDetailWindow = ({
4949
<ul className="tech-details__list">
5050
{selectedProject.techstack.map((tech) => {
5151
return (
52-
<li className="tech-details__item">
52+
<li key={tech} className="tech-details__item">
5353
<img
5454
className="tech-details__image"
5555
src={`/images/skills/${tech}.png`}

src/components/ProjectDetailWindow/ProjectDetailWindow.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
width: 100%;
1414

1515
&__container {
16-
@include flex(null, null, center);
16+
@include flex(null, null, null);
1717
margin-bottom: $small;
1818
}
1919
&__image {

0 commit comments

Comments
 (0)