React 19 + TypeScript SPA with Vite, mobile responsive fixes, GitHub Actions CI/CD pipeline for automated deployment. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
409 B
CSS
24 lines
409 B
CSS
.blog-page {
|
|
padding: 8rem 2rem 4rem;
|
|
min-height: 80vh;
|
|
background: var(--dark-grey-100);
|
|
}
|
|
|
|
.blog-page .section-title {
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.blog-loading {
|
|
text-align: center;
|
|
color: var(--light-grey-100);
|
|
opacity: 0.7;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.blog-card-link {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|