feat: enhance demo components with consistent styling and info boxes

- Add standardized header and info box components to all demo files
- Improve visual consistency with theme colors and spacing
- Add max-height and overflow-y for better content containment
- Update package.json build script with --force flag
- Add .gitignore entries for REFACTORING files
- Fix table formatting in audio-intro.md
This commit is contained in:
sanbuphy
2026-02-14 12:14:07 +08:00
parent cd2ce9e661
commit ebe2bf6109
70 changed files with 12307 additions and 10445 deletions
@@ -1,5 +1,11 @@
<template>
<div class="policy-editor-demo">
<div class="demo-header">
<span class="icon">📋</span>
<span class="title">策略编辑器</span>
<span class="subtitle">理解 IAM 策略的 JSON 结构</span>
</div>
<div class="editor-layout">
<div class="editor-panel">
<div class="panel-title">策略编辑器</div>
@@ -42,6 +48,11 @@
</div>
</div>
</div>
<div class="info-box">
<span class="icon">💡</span>
<strong>核心思想</strong>策略由 EffectActionResourceCondition 四个核心元素组成理解这四个元素的作用是编写 IAM 策略的基础
</div>
</div>
</template>