fix(frontend): unify dashboard background color with the rest of the UI (#32)#37
Open
markoceri wants to merge 2 commits into
Open
fix(frontend): unify dashboard background color with the rest of the UI (#32)#37markoceri wants to merge 2 commits into
markoceri wants to merge 2 commits into
Conversation
Remove the "Edge Mining" text label and the commented-out username placeholder from the sidebar header so only the logo remains, then left-align the logo with the menu items below and refine the green glow so it originates from the logo area. Closes edge-mining#33
…UI (edge-mining#32) The main content area used bg-base-200 (a lighter grey) while the sidebar, cards, top bar, and bottom bar all use bg-base-100. This made the dashboard background appear inconsistent and broke the flat visual style. Switch the drawer-content background to bg-base-100 so a single background tone is used across the whole interface.
e0b46ed to
c4d95c0
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.
Summary
Fixes #32.
The dashboard background appeared in a slightly lighter shade of grey than the sidebar, cards, and tables, breaking the flat, modern look of the UI.
The main content area (
drawer-contentinApp.vue) usedbg-base-200(oklch 35%), while the sidebar, cards, top bar, and bottom bar all usebg-base-100(oklch 25%). Switching the content area tobg-base-100unifies the whole interface to a single background tone.Changes
frontend/src/App.vue:drawer-contentbackgroundbg-base-200→bg-base-100.CHANGELOG.md: added entry underFixed.Notes
Cards remain distinguishable thanks to their border (
border-base-300/40), consistent with the requested flat style.