修正文案

master
yutent 2023-03-15 19:38:37 +08:00
parent 386d613af7
commit 069eb5fc9c
2 changed files with 12 additions and 4 deletions

View File

@ -142,10 +142,18 @@ class Button extends Component {
box-shadow: 0 0 0 2px var(--color-plain-a);
}
$colors: 'teal', 'blue', 'green', 'orange', 'red', 'dark', 'grey';
$colors: (
primary: 'teal',
info: 'blue',
success: 'green',
warning: 'orange',
danger: 'red',
secondary: 'dark',
help: 'grey'
);
@each $c in $colors {
:host([#{$c}]) {
@loop $t, $c in $colors {
:host([type='#{$t}']) {
button {
color: var(--color-#{$c}-2);
border: 1px solid var(--color-#{$c}-2);

View File

@ -9,7 +9,7 @@
- `type=info` 蓝色
- `type=success` 绿色
- `type=warning` 橙色
- `type=error` 红色
- `type=danger` 红色
- `type=help` 灰色
3. 尺寸, 主要指 高度