fix(ui): restore monospace font on the container name#116
Merged
Conversation
Pre-#113 the container name was chip content and inherited JetBrains Mono from the global chip rule. The grid redesign made it a plain span, so it fell back to the UI font (Rajdhani), changing the row's look. Pin JetBrains Mono on .row-name so the name matches the version tags and the pre-redesign appearance. JetBrains Mono runs larger than Rajdhani at the same size, so also hold the name at the chip font-size (0.875rem) instead of the 1rem body default, keeping it in line with the version tags. Verified live: the name computes to JetBrains Mono at 14px, matching the version chips.
nopoz
force-pushed
the
fix/container-name-mono-font
branch
from
July 5, 2026 04:31
fdd9313 to
69d36a3
Compare
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 free
to 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.
Problem
The container name in each row renders in the UI font (Rajdhani) instead of the monospace font it used before the #113 grid redesign.
Root cause
Pre-#113 the name was
<v-chip>content, andcyberpunk.csssetsfont-family: "JetBrains Mono"on every chip (.v-application .v-chip). #113 rebuilt the name as a plain<span class="row-name">, which no longer matches that rule and falls back to the app default (Rajdhani).Confirmed against a live pre-#113 build: the name there computes to
"JetBrains Mono", monospace; onmainit computes to Rajdhani.Fix
Pin
font-family: "JetBrains Mono", monospaceon.row-nameso the name matches the version tags and the pre-redesign look.Verification
Built and loaded the container list: the name now computes to
"JetBrains Mono", monospace, matching the adjacent version chips.