mirror of
https://gitee.com/ShopeX/ECShopX_mobile-frontend
synced 2026-08-14 17:41:45 +08:00
30 lines
571 B
SCSS
30 lines
571 B
SCSS
@import "../../../style/imports";
|
|
|
|
.trade-item {
|
|
background: #fff;
|
|
border-radius: $item-border-radius;
|
|
margin: 0 0 $edge-margin;
|
|
&__hd {
|
|
padding: 28px $edge-size;
|
|
line-height: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
.more {
|
|
color: $color-link;
|
|
font-size: small;
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
&__total {
|
|
padding: 0 $edge-size floor($edge-size/2);
|
|
text-align: right;
|
|
}
|
|
|
|
&__ft {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
padding: floor($edge-size/2) $edge-size;
|
|
}
|
|
} |