From 96d4f14b6f6d1899f7134aafd2043be0433b9602 Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Sun, 3 Aug 2025 23:59:06 -0400 Subject: [PATCH] Update responsive layout for footer and latest lanes --- public_html/css/hpr.css | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/public_html/css/hpr.css b/public_html/css/hpr.css index e33802e..fc00ab5 100644 --- a/public_html/css/hpr.css +++ b/public_html/css/hpr.css @@ -131,7 +131,8 @@ body > footer { flex: 0 1 auto; background-color: var(--background-secondary); color: var(--text-secondary); - padding: 0.25rem; + padding: clamp(0.25rem, calc(100vw - var(--for-tablet-portrait-up) + 0.5rem), 0.5rem); + margin-top: 0.5rem; text-align: center; line-height: 1.25; } @@ -498,9 +499,6 @@ fieldset > input { max-height: 40vw; overflow-y: scroll } - .lane > article:nth-last-child(2), - .lane > article:last-child { - } #latest_lane.lane section > ul { margin: 0.5rem 3rem 0 1rem; } @@ -510,4 +508,7 @@ fieldset > input { flex-basis: 32%; max-width: 32%; } - + #latest_lane.lane section { + flex: 1; + } +}