css cell mixin
更新日志
- 2022-8-12
代码
@mixin x_cell {
&,
.x_left,
.x_right {
@include flex;
align-items: center;
}
flex-wrap: nowrap;
justify-content: space-between;
padding: 5px;
// background-color: #fff;
font-size: 12px;
border-radius: 5px;
.x_left {
max-width: 30%;
color: #333;
line-height: 18px;
padding: 3px 2px;
.icon {
margin-right: 3px;
}
}
.x_right {
max-width: 70%;
.icon {
margin-left: 3px;
}
line-height: 16px;
color: $x-text-color-gray;
padding: 3px 2px;
}
}