updated projects display; simplified for mobile

This commit is contained in:
Hunter W.
2026-06-02 16:16:50 -04:00
parent 3f17cf9094
commit 39a056db25
6 changed files with 170 additions and 142 deletions

26
styles/gallery.css Normal file
View File

@@ -0,0 +1,26 @@
@import '../app/globals.css';
.gallery-action-button {
position: absolute;
width: 28;
height: 28;
border-radius: var(--radius-sm);
border: 1px solid var(--accent);
background: var(--accent-bg);
color: #fff;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
padding: 0;
backdrop-filter: blur(4px);
z-index: 1001;
transition: background 0.15s ease, border-color 0.15s ease;
}
@media (max-width: 768px) {
.project-card {
height: 100%;
}
}