sync: 新增 BMAD 开发流程重构 - 目录结构 modes/phases/rules + 新增自动修复引擎 + H5 不兼容组件替换方案

This commit is contained in:
Claude Code
2026-04-21 05:44:50 +00:00
parent 009d2a2c5b
commit ef720d58ef

View File

@@ -114,10 +114,9 @@
```html
<style>
/* phone-frame: iPhone 12+ 逻辑分辨率 390×844border-box 下 414×868 = 390×844 内容区 + 12px×2 边框 */
.phone-frame {
width: 414px;
height: 868px;
width: 375px;
height: 812px;
border: 12px solid #1a1a1a;
border-radius: 40px;
overflow: hidden;
@@ -128,10 +127,9 @@
height: 100%;
border: none;
}
/* grid 列宽 minmax(440px) 容纳 414px phone-frame + 容器内边距 */
.prototype-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
grid-template-columns: repeat(auto-fill, 375px);
gap: 24px;
padding: 24px;
justify-content: center;