wyyl/beike/Installer/assets/scss/_steps.scss

88 lines
1.6 KiB
SCSS

@charset "UTF-8";
/**
* @copyright 2022 beikeshop.com - All Rights Reserved.
* @link https://beikeshop.com
* @Author pu shuo <pushuo@guangda.work>
* @Date 2022-09-16 11:38:13
* @LastEditTime 2022-09-19 09:59:42
*/
.aside-wrap {
.logo {
img {
max-width: 180px;
}
}
.steps-wrap {
ul {
padding-left: 0;
list-style: none;
li {
margin-bottom: 30px;
font-size: 16px;
color: #333;
display: flex;
align-items: center;
justify-content: space-between;
.left {
display: flex;
align-items: center;
}
.right {
display: none;
}
span.index {
width: 40px;
flex: 0 0 40px;
height: 40px;
border: 2px solid #ddd;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-right: 14px;
color: #666;
}
&.success {
color: #999;
span.index {
background-color: #5dca86;
border-color: #5dca86;
color: #fff;
i {
font-size: 24px;
}
}
}
&.ing {
color: $primary;
span.index {
border-color: $primary;
color: $primary;
i {
font-size: 24px;
}
}
.right {
display: block;
i {
font-size: 24px;
line-height: 1;
}
}
}
}
}
}
}