Fixed some styling issues

This commit is contained in:
2026-02-24 08:27:59 +01:00
parent f656206691
commit ed0e370e9d
11 changed files with 20 additions and 12 deletions

View File

@@ -702,12 +702,21 @@ app-root {
}
/* ---- Projects Page & Dialog ---- */
.project-grid {
.card-grid {
display: grid;
gap: clamp(1rem, 3vw, 1.5rem);
grid-template-columns: repeat(auto-fill, minmax(min(100%, 450px), 1fr));
max-width: var(--app-maxWidth);
margin: 0 auto;
margin-right: 1rem;
margin-left: 1rem;
margin-top: auto;
}
.algo-card {
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
display: flex;
flex-direction: column;
cursor: pointer;
}
.project-card {