updated route pathing, skills.tsx for skill card abstraction and header for mobile

This commit is contained in:
2026-01-12 19:16:48 -06:00
parent 54831798d0
commit 127aa9acc7
4 changed files with 185 additions and 50 deletions

View File

@@ -73,6 +73,11 @@
margin: 0 auto;
}
.mobile-page-title {
display: none;
/* Hidden on desktop */
}
.mobile-toggle {
display: none;
flex-direction: column;
@@ -100,9 +105,20 @@
text-align: left;
}
.mobile-page-title {
display: block;
color: white;
font-size: 1.2rem;
font-weight: 700;
letter-spacing: 0.5px;
z-index: 1001;
/* Ensure visible above nav overlay if needed, though nav usually covers content */
position: relative;
}
.header-content {
justify-content: flex-end;
/* Align hamburger to right */
justify-content: space-between;
/* Push title left, hamburger right */
}
.mobile-toggle {