This commit is contained in:
2026-02-23 06:46:52 +01:00
parent fd1cf2e72c
commit 7576f6bcf6
24 changed files with 827 additions and 182 deletions

View File

@@ -9,7 +9,7 @@ const { project } = Astro.props;
---
<a href=`/projects/${project.id}` id="card-link">
<section class="glass">
<div class="glass">
<h2>{project.data.title}</h2>
<hr />
<p>{project.data.description}</p>
@@ -17,7 +17,7 @@ const { project } = Astro.props;
<div id="tag-area">Tags: <ul>{project.data.tags.map(tag => <li>{ tag }</li>)}</ul></div>
: null
}
</section>
</div>
</a>
<style lang="scss">
@@ -31,7 +31,7 @@ const { project } = Astro.props;
scroll-snap-align: start;
}
section {
div {
--border-width: 1px;
padding: 1rem;
z-index: 1;