feat: 关联平台账号,关联渠道账户
This commit is contained in:
22
src/styles/components/form.scss
Normal file
22
src/styles/components/form.scss
Normal file
@ -0,0 +1,22 @@
|
||||
.arco-form {
|
||||
.arco-form-item {
|
||||
margin-bottom: 16px !important;
|
||||
.arco-form-item-label-col {
|
||||
padding-right: 12px !important;
|
||||
.arco-form-item-label {
|
||||
color: #211f24;
|
||||
font-family: $font-family-regular;
|
||||
font-size: 14px;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
line-height: 22px;
|
||||
.arco-form-item-label-required-symbol {
|
||||
color: #f64b31;
|
||||
margin-right: 4px;
|
||||
font-size: 14px;
|
||||
font-family: $font-family-regular;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -7,4 +7,6 @@
|
||||
@import "./textarea.scss";
|
||||
@import "./select.scss";
|
||||
@import "./date-picker.scss";
|
||||
@import "./button.scss";
|
||||
@import "./button.scss";
|
||||
@import "./steps.scss";
|
||||
@import "./form.scss";
|
||||
47
src/styles/components/steps.scss
Normal file
47
src/styles/components/steps.scss
Normal file
@ -0,0 +1,47 @@
|
||||
.arco-steps {
|
||||
.arco-steps-item {
|
||||
.arco-steps-item-node {
|
||||
.arco-steps-icon {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border-radius: 32px;
|
||||
color: #3c4043;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
line-height: 24px;
|
||||
font-family: $font-family-manrope-medium;
|
||||
background-color: #f2f3f5;
|
||||
}
|
||||
}
|
||||
.arco-steps-item-content {
|
||||
.arco-steps-item-title {
|
||||
color: #3c4043;
|
||||
font-family: $font-family-regular;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
&::after {
|
||||
background-color: #e6e6e8 !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
&-active,
|
||||
&-finish {
|
||||
.arco-steps-item-node {
|
||||
.arco-steps-icon {
|
||||
color: #fff;
|
||||
background-color: #6d4cfe;
|
||||
}
|
||||
}
|
||||
.arco-steps-item-content {
|
||||
.arco-steps-item-title {
|
||||
font-family: $font-family-medium;
|
||||
&::after {
|
||||
background-color: #6d4cfe !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user