diff --git a/docs/concepts/style.md b/docs/concepts/style.md
index a916563d2..d98910ddc 100755
--- a/docs/concepts/style.md
+++ b/docs/concepts/style.md
@@ -10,6 +10,11 @@ order: 18
amis 中有大量的功能类 class 可以使用,即可以用在 schema 中,也可以用在自定义组件开发中,掌握这些 class, 几乎可以不用写样式。
+
+
注意
+
CSS辅助类样式做了全新的升级,请前往
新版样式查看使用文档。旧版本可以继续,但将不再做迭代更新。
+
+
## 基本使用
例如,下面这个例子,我们内容区渲染了两个按钮,但是可以看到,两个按钮紧贴在一起,并不是很美观,于是我们想添加一定的间隔
@@ -17,7 +22,7 @@ amis 中有大量的功能类 class 可以使用,即可以用在 schema 中,
```schema:height="100" scope="body"
[
{
- "type": "action",
+ "type": "button",
"label": "按钮1",
"actionType": "dialog",
"dialog": {
@@ -26,7 +31,7 @@ amis 中有大量的功能类 class 可以使用,即可以用在 schema 中,
}
},
{
- "type": "action",
+ "type": "button",
"label": "按钮2",
"actionType": "dialog",
"dialog": {
@@ -44,7 +49,7 @@ amis 中有大量的功能类 class 可以使用,即可以用在 schema 中,
```schema:height="100" scope="body"
[
{
- "type": "action",
+ "type": "button",
"label": "按钮1",
"actionType": "dialog",
"dialog": {
@@ -53,7 +58,7 @@ amis 中有大量的功能类 class 可以使用,即可以用在 schema 中,
}
},
{
- "type": "action",
+ "type": "button",
"label": "按钮2",
"className": "m-l",
"actionType": "dialog",
diff --git a/docs/css-utilities/index.md b/docs/css-utilities/index.md
new file mode 100644
index 000000000..c019b9e17
--- /dev/null
+++ b/docs/css-utilities/index.md
@@ -0,0 +1,108 @@
+---
+title: 样式
+---
+
+amis 参考 [tailwindcss](https://tailwindcss.com/) 加入了大量的帮助类 css,掌握这些用法,完全不用手写 css。
+
+这个文件大概有 300K 左右,所以并没有和主题文件合并在一起,用户可以选择性加载。
+
+```
+