完成 input 与 textarea 样式拆解

This commit is contained in:
就眠儀式
2022-02-09 10:37:44 +08:00
parent 8a8bc6b0b5
commit 0c4e9e21c4
11 changed files with 153 additions and 43 deletions

View File

@@ -296,9 +296,20 @@ export default {
::: title 主题配置
:::
<p style="margin-left: 30px">less</p>
```
@button-primary-color: #009688; // 主题色
@button-border-radius: 2px; // 圆角
@button-border-color: #d2d2d2; // 边框色
```
<p style="margin-left: 30px">css</p>
```
--button-primary-color: #009688; // 主题色
--button-border-radius: 2px; // 圆角
--button-border-color: #d2d2d2; // 边框色
```
::: title Button 属性

View File

@@ -30,6 +30,27 @@ export default {
:::
::: title 主题配置
:::
<p style="margin-left: 30px">less</p>
```
@panel-border-color: #eee;
@panel-border-radius: 2px;
@panel-fore-color: #333;
@panel-back-color: #fff;
```
<p style="margin-left: 30px">css</p>
```
--panel-border-color: #eee;
--panel-border-radius: 2px;
--panel-fore-color: #333;
--panel-back-color: #fff;
```
::: title Panel 插槽
:::