Update responsive layout for footer and latest lanes

This commit is contained in:
2025-08-03 23:59:06 -04:00
parent f2b00145ad
commit 96d4f14b6f

View File

@@ -131,7 +131,8 @@ body > footer {
flex: 0 1 auto; flex: 0 1 auto;
background-color: var(--background-secondary); background-color: var(--background-secondary);
color: var(--text-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; text-align: center;
line-height: 1.25; line-height: 1.25;
} }
@@ -498,9 +499,6 @@ fieldset > input {
max-height: 40vw; max-height: 40vw;
overflow-y: scroll overflow-y: scroll
} }
.lane > article:nth-last-child(2),
.lane > article:last-child {
}
#latest_lane.lane section > ul { #latest_lane.lane section > ul {
margin: 0.5rem 3rem 0 1rem; margin: 0.5rem 3rem 0 1rem;
} }
@@ -510,4 +508,7 @@ fieldset > input {
flex-basis: 32%; flex-basis: 32%;
max-width: 32%; max-width: 32%;
} }
#latest_lane.lane section {
flex: 1;
}
}