fix(mobile): move 'Zobacz wszystko' link below content on mobile
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

On narrow screens the link was competing for horizontal space, splitting
the widget into two columns. Now it wraps to a full-width row below.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Maciej Pienczyn 2026-03-28 04:06:10 +01:00
parent 31865f1328
commit 13284ea005

View File

@ -945,7 +945,8 @@
@media (max-width: 768px) {
.whats-new-widget {
gap: var(--spacing-sm);
flex-wrap: wrap;
gap: var(--spacing-xs);
padding: var(--spacing-sm) var(--spacing-md);
}
@ -960,6 +961,12 @@
.whats-new-extra {
display: none;
}
.whats-new-link {
width: 100%;
text-align: right;
margin-top: 0;
}
}
{% endblock %}