Use flex-end alignment for controls bar bottom alignment

Change from stretch to flex-end to ensure control group
bottom edges stay aligned regardless of varying heights.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Smittix
2026-02-04 20:53:59 +00:00
parent 675a3cdbfb
commit a09793b6ec
2 changed files with 2 additions and 2 deletions

View File

@@ -755,7 +755,7 @@ body {
grid-column: 1 / -1;
grid-row: 2;
display: flex;
align-items: stretch;
align-items: flex-end;
flex-wrap: nowrap;
gap: 8px;
padding: 8px 15px;

View File

@@ -670,7 +670,7 @@ body {
grid-column: 1 / -1;
grid-row: 2;
display: flex;
align-items: stretch;
align-items: flex-end;
flex-wrap: nowrap;
gap: 8px;
padding: 8px 15px;