feat: 移动端和平板端响应式适配 - #50
Merged
TreeLin merged 1 commit intoJul 28, 2026
Merged
Conversation
- Add hamburger menu with dropdown panel (home) and sidebar drawer (doc) - Add 1024px tablet breakpoint for grids and doc layout - Fix grid blowout with minmax(0, 1fr) on doc-layout - Copy button: top-right corner, hover-to-show, touch-friendly - Safe area insets, overflow-x guard, reduced-motion support - Content adaptations: inline code wrap, table scroll, touch targets
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.
概述
为全站页面添加移动端(≤768px)和平板端(≤1024px)的响应式适配。修复了移动端无导航、内容溢出裁切、代码块复制按钮体验差等问题。
改动范围
_layouts/home.html_layouts/doc.htmlminmax(0,1fr)防 grid 溢出、复制按钮交互重做、内容适配playbook/index.mdbund-summit-2026/index.md关键修复
1fr→minmax(0, 1fr),防止代码块/长 inline code 撑宽 grid 列导致内容裁切overflow-x: hidden兜底 + nav 内容精简(移动端 logo 缩短、CTA 移入菜单)overflow-wrap: anywhere、表格table-wrap水平滚动、移动端图片/字号/padding 收紧预览对比
before
modelstudio-mobile-before.mp4
after
modelstudio-mobile-after.mp4
测试