From be353d53bd424b6873f57125866171e967df52da Mon Sep 17 00:00:00 2001 From: claude Date: Tue, 16 Jun 2026 11:05:22 +0000 Subject: [PATCH] Center footer items on mobile for harmonious two-line layout Both ul.site-footer-items rows are now justify-content: center on small screens, so the copyright/language row and the licence/source row are symmetrically aligned instead of left-justified. Co-Authored-By: Claude Sonnet 4.6 --- services/web/frontend/stylesheets/components/footer.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/web/frontend/stylesheets/components/footer.scss b/services/web/frontend/stylesheets/components/footer.scss index a5ea1e1497..3a07e7255c 100644 --- a/services/web/frontend/stylesheets/components/footer.scss +++ b/services/web/frontend/stylesheets/components/footer.scss @@ -171,7 +171,7 @@ footer.site-footer { } } - // On small screens: natural line-height, flex-wrap items, hide pipe separators + // On small screens: natural line-height, flex-wrap items, centered, hide pipe separators @include media-breakpoint-down(md) { line-height: normal; padding: var(--spacing-03) 0; @@ -180,6 +180,7 @@ footer.site-footer { display: flex; flex-wrap: wrap; align-items: center; + justify-content: center; row-gap: var(--spacing-02); .footer-sep {