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

This commit is contained in:
2026-02-04 16:22:26 +01:00
parent 8a75aed6d8
commit 810d5f6c0c
4 changed files with 34 additions and 19 deletions

View File

@@ -158,18 +158,16 @@ import { TranslateModule } from '@ngx-translate/core';
/* Right Column */
.visual-content {
display: flex;
justify-content: center;
gap: 2rem;
align-items: center;
/* Mobile: Stacked */
flex-direction: column;
justify-content: center;
align-items: center;
gap: 2rem;
/* Desktop: Side-by-side */
@media(min-width: 768px) {
flex-direction: row;
flex-wrap: wrap; /* Wrap if necessary but try row */
align-items: flex-start;
display: grid;
grid-template-columns: repeat(2, 1fr);
align-items: start;
justify-items: center;
}
}
@@ -178,7 +176,8 @@ import { TranslateModule } from '@ngx-translate/core';
padding: 1rem;
border-radius: var(--radius-lg);
box-shadow: var(--shadow-lg);
width: 260px;
width: 100%;
max-width: 260px;
position: relative;
}