fix: reduce board image scale and improve CI cache strategy#86
Merged
fix: reduce board image scale and improve CI cache strategy#86
Conversation
Fixes #84 Board images in the flash progress screen were displaying too large (200px effective size) causing overflow and invading the text area. This made the UI appear cramped and unprofessional. CSS Changes: - Reduce transform scale from 2.0 to 1.5 (150px effective size) - Increase flash-header gap from 18px to 20px for better spacing - Increase flash-header padding from 18px to 20px 24px (horizontal) - Update responsive breakpoints proportionally for mobile CI/CD Changes: - Remove duplicate npm cache from setup-node (using explicit cache action) - Simplify cache keys by removing architecture-specific components - Add versioned shared keys for Rust workspace cache - Improve cache hit rate across different runners
🧪 Test BuildsVersion:
ℹ️ About these builds
|
igorpecovnik
approved these changes
Jan 20, 2026
Member
There was a problem hiding this comment.
If we are scaling image down, perhaps switching to lower resolution on the way? Perhaps its nitpicking? :)
Member
Author
|
Let’s say it wouldn’t change anythin, it's hardcoded on the css, that by default makes a transform scale, so even if it’s of quality the css commands both in height and width and the scaling of that image |
Member
|
ok, merge. |
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.
Summary
This PR fixes the board image display issue in the flash progress screen where images were overflowing and invading the text area, making the UI appear cramped and unprofessional.
Fixes #84
Changes
UI/UX Fixes
transform: scale(2.0)toscale(1.5)(effective size from 200px to 150px).flash-headergap from 18px → 20pxBefore: Images were 200px effective size, causing overflow and cramped text layout
After: Images are 150px effective size, properly contained with balanced spacing
CI/CD Improvements
setup-nodeaction (already using explicit cache action)v1-*) for Rust workspace cacheScreenshots
Notes