Feat/layout refinement#279
Open
Nexisato wants to merge 5 commits into
Open
Conversation
There was a problem hiding this comment.
Code Review
This pull request primarily focuses on documentation updates to improve consistency in naming conventions, specifically standardizing references to 'GitHub', 'TensorBoard', 'MLflow', 'OmegaConf', 'Stable Baselines3', and 'W&B' across various English and Chinese documentation files. The review comments provided actionable suggestions to further refine the consistency of 'W&B' terminology in the integration documentation, which have been incorporated.
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
Optimize the documentation site layout for wide-screen/high-resolution displays, and compact the homepage footer.
Changes
.vitepress/theme/custom.css— Wide-screen layout optimization--vp-layout-max-width: 1660px→100%, remove fixed content width constraintcontent-containerwithmax-width: 56rem+margin: 0 auto+flex: 0 1 auto— text content is centered between sidebar and TOC, and shrinks responsively when space is limitedasidewithflex: 0 0 240px+padding-right: 32px— pinned to the right edge using sticky positioning@media (max-width: 1280px)restores static stacking layout for narrow screenszh/index.md— Compact footer (3 lines → 2 lines)·separatorsmargin-topreduced from 60px → 48pxen/index.md— Compact footer (2 lines → 1 line)·separatormargin-topreduced from 120px → 48pxLayout effect (2560px wide screen)
Content is centered between sidebar and TOC, which are aligned to opposite ends.
Layout effect (1440px)
Content auto-shrinks via
flex: 0 1 auto— no overlap, no overflow.