feat: make entire project card clickable

finxol.io 659ffc00 b7d78cb0

verified
Changed files
+9 -1
src
assets
styles
+9 -1
src/assets/styles/index.css
···
}
.project {
+
position: relative;
display: grid;
grid-template-areas:
"img img"
···
a {
text-decoration: none;
+
}
+
+
a::before {
+
content: "";
+
position: absolute;
+
inset: 0;
+
z-index: 1;
}
& > :not(picture) {
···
display: inline-block;
padding: 0.25rem 1rem;
border-radius: 100vw;
-
background-color: var(--teal-600);
+
background-color: var(--teal-700);
color: var(--teal-100);
font-weight: lighter;
font-size: 0.8rem;