Various style updates
All checks were successful
Docker Deploy / build-and-push (push) Successful in 3m44s

This commit is contained in:
2025-07-22 17:58:26 -06:00
parent bda8535c51
commit 1082834f33
9 changed files with 184 additions and 199 deletions

View File

@@ -9,26 +9,24 @@ interface Props {
const { project } = Astro.props;
---
<div
class="card bg-accent shadow-lg w-full sm:w-[calc(50%-1rem)] md:w-96 min-w-[280px] max-w-sm shrink"
>
<div class="card-body p-6 break-words">
<div class="card bg-accent w-full max-w-sm shrink shadow-md">
<div class="card-body break-words">
<h2
class="card-title text-xl md:text-2xl font-bold justify-center text-center break-words text-base-100"
>
{project.name}
</h2>
<p class="text-center break-words my-4 text-base-100">
<p class="text-center break-words text-base-100">
{project.description}
</p>
<div class="card-actions justify-end mt-4">
<div class="card-actions justify-end">
<a
href={project.link}
target="_blank"
rel="noopener noreferrer"
class="btn btn-sm bg-base-100 hover:bg-secondary text-accent"
class="btn btn-circle text-accent"
aria-label={`Visit ${project.name}`}
>
<Icon name="mdi:link" class="text-lg" />