You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
634 B
31 lines
634 B
// 购物车页面样式
|
|
.cart-page {
|
|
// 当购物车为空时,设置透明背景
|
|
&.empty {
|
|
page {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.cart-empty-container {
|
|
background-color: transparent !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
// 空购物车容器样式
|
|
.cart-empty-container {
|
|
background-color: transparent !important;
|
|
|
|
// 确保 Empty 组件及其子元素也是透明的
|
|
.nut-empty {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.nut-empty__image {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
.nut-empty__description {
|
|
background-color: transparent !important;
|
|
}
|
|
}
|