style(ux): make filter bar full width to align with layout
All checks were successful
Build and Push Docker Images / Build Backend (FastAPI) (push) Successful in 34s
Build and Push Docker Images / Build Frontend (Next.js) (push) Successful in 1m12s
Build and Push Docker Images / Trigger Portainer Update (push) Successful in 1s

This commit is contained in:
Tudor
2026-03-05 09:40:37 +00:00
parent ad7380dba5
commit 2b808959c5
2 changed files with 31 additions and 3 deletions

View File

@@ -6,9 +6,6 @@
margin-bottom: 2rem;
box-shadow: var(--shadow-soft, 0 2px 8px rgba(26, 22, 18, 0.06));
transition: opacity 0.2s ease;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
.filterBar.isLoading {

View File

@@ -2,6 +2,37 @@
width: 100%;
}
.heroSection {
text-align: center;
margin-bottom: 2rem;
padding-top: 1rem;
}
.heroTitle {
font-size: 2.5rem;
font-weight: 700;
color: var(--text-primary, #1a1612);
margin-bottom: 0.5rem;
line-height: 1.2;
font-family: var(--font-playfair), 'Playfair Display', serif;
}
.heroDescription {
font-size: 1.1rem;
color: var(--text-secondary, #5c564d);
margin: 0 auto;
max-width: 600px;
}
@media (max-width: 768px) {
.heroTitle {
font-size: 1.75rem;
}
.heroDescription {
font-size: 1rem;
}
}
.locationBannerWrapper {
display: flex;
align-items: center;