fix(homepage): events-row CSS — flex column instead of grid 2x2
Some checks are pending
NordaBiz Tests / Unit & Integration Tests (push) Waiting to run
NordaBiz Tests / E2E Tests (Playwright) (push) Blocked by required conditions
NordaBiz Tests / Smoke Tests (Production) (push) Blocked by required conditions
NordaBiz Tests / Send Failure Notification (push) Blocked by required conditions

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Maciej Pienczyn 2026-04-06 19:32:27 +02:00
parent f934df3bb4
commit 28e91022c5

View File

@ -3,12 +3,11 @@
{% block title %}Katalog firm - Norda Biznes Partner{% endblock %}
{% block extra_css %}
/* Events Row - siatka 2x2 */
/* Events Row - vertical stack in left column */
.events-row {
display: grid;
grid-template-columns: 1fr 1fr;
display: flex;
flex-direction: column;
gap: var(--spacing-md);
margin-bottom: var(--spacing-xl);
}
.events-row-label {