emrg: fix GUI sidebar layout — pin status dot to bottom, remove duplicate divider - #930
Merged
Merged
Conversation
argszero
commented
Aug 21, 2026
argszero
left a comment
OwnerAuthor
There was a problem hiding this comment.
✅ LGTM — cycle 1244. Verified the CSS diff (layout.css, +2/−1): #sidebar height:100% pins the footer, .sidebar-footer margin-top:auto anchors the status dot to the bottom edge, #open-sessions border-bottom removed leaving a single divider. CI green (test + test-windows run 32536412551).
Uh oh!
There was an error while loading. Please reload this page.
argszero added a commit
that referenced
this pull request
Aug 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes the GUI left sidebar layout (rant 2026-08-22T07:10:44).
Changes (emrg/gui/renderer/css/layout.css)
Status dot not pinned to the bottom:
#sidebaris aflex-direction: columncontainer but had no full height, and.sidebar-footer(which holds the status-dot) had nomargin-top: auto, so the green dot floated below the session list instead of sitting against the sidebar's bottom edge.#sidebar: addedheight: 100%so the column flex fills#app's 100vh..sidebar-footer: addedmargin-top: auto— in a column flex this pushes the footer to the container's bottom edge.Duplicate divider line:
#open-sessionshad aborder-bottomand.sidebar-footeraborder-top, sitting right next to each other (onlymargin-bottom: var(--sp-1)between them) — visually two parallel lines.#open-sessions'sborder-bottom;.sidebar-footer'sborder-topremains as the single divider.Verification
uv run pytest tests/: 1002 passed, 1 skippedpython -c "from emrg.client.app import run_client": OKpython -m emrg --help: OKCSS-only change; no test count change.