Fix brand logo to stay centered on mini sidebar mode - #6114
Merged
Conversation
…so it stays centered horizontally
✅ Deploy Preview for adminlte-v4 ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
puikinsh
added a commit
that referenced
this pull request
Sep 1, 2026
#6114 changed only src/scss, so merging it left the committed dist/ without the fix — the mini-sidebar brand rule in dist/css/adminlte.css still lacked `margin-left: 0`. Rebuilt, RTL included. Dev dependencies: eslint 10.8.1 -> 10.9.1, eslint-plugin-unicorn 73 -> 74, @typescript-eslint/* and typescript-eslint 8.67.0 -> 8.69.0, astro 7.2.4 -> 7.2.10, @astrojs/mdx 7.0.7 -> 8.0.0, @astrojs/markdown-remark 7.2.4 -> 7.3.0, rollup 4.62.4 -> 4.63.1, terser 5.50.0 -> 5.51.2, happy-dom 20.11.6 -> 20.12.0, sass 1.103.0 -> 1.103.1, globals 17.11.0 -> 17.12.0. This finishes dependabot #6118 and #6121, which could not merge after their siblings landed, and goes past what they proposed where a newer patch was out. @astrojs/mdx 8.0.0 is a major but peers astro@^7.2.6, not 8 — and it flattens the tree: four nested duplicates of @astrojs/markdown-remark and @astrojs/internal-helpers go, @astrojs/markdown-satteri hoists to the top level. Verified with a clean `rm -rf node_modules && npm ci`: resolves with no peer warnings. All 114 built html/css/js files are byte-identical across the whole dependency change, so nothing here reaches consumers. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
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.
This pull request makes a minor update to the sidebar styling. The only change is the addition of a
margin-left: 0;rule to the.brand-textclass insrc/scss/_app-sidebar.scsswhen sidebar mini is collapsed, which helps ensure the brand logo to stay horizontally centered on mini sidebar mode.