feat(web): entire site responsive
All checks were successful
Build, Test and Deploy / test-backend (push) Successful in 23s
Build, Test and Deploy / build-and-push (push) Successful in 21s
Build, Test and Deploy / deploy (push) Successful in 4s

This commit is contained in:
2026-02-04 16:18:37 +01:00
parent a0efdc105d
commit 8a75aed6d8
7 changed files with 146 additions and 10 deletions

View File

@@ -64,16 +64,18 @@ import { TranslateModule } from '@ngx-translate/core';
grid-template-columns: 1fr;
gap: 4rem;
align-items: center;
text-align: center; /* Center on mobile */
@media(min-width: 992px) {
grid-template-columns: 1fr 1fr;
gap: 6rem;
text-align: left; /* Reset to left on desktop */
}
}
/* Left Column */
.text-content {
text-align: left;
/* text-align: left; Removed to inherit from parent */
}
.eyebrow {
@@ -106,6 +108,14 @@ import { TranslateModule } from '@ngx-translate/core';
background: var(--color-primary-500);
border-radius: 2px;
margin-bottom: var(--space-6);
/* Center divider on mobile */
margin-left: auto;
margin-right: auto;
@media(min-width: 992px) {
margin-left: 0;
margin-right: 0;
}
}
.description {
@@ -119,6 +129,11 @@ import { TranslateModule } from '@ngx-translate/core';
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
justify-content: center; /* Center tags on mobile */
@media(min-width: 992px) {
justify-content: flex-start;
}
}
.tag {
@@ -145,6 +160,17 @@ import { TranslateModule } from '@ngx-translate/core';
display: flex;
justify-content: center;
gap: 2rem;
align-items: center;
/* Mobile: Stacked */
flex-direction: column;
/* Desktop: Side-by-side */
@media(min-width: 768px) {
flex-direction: row;
flex-wrap: wrap; /* Wrap if necessary but try row */
align-items: flex-start;
}
}
.photo-card {