Browse Source

修改购物车样式不兼容的问题

zyh
Gaoxs 4 years ago
parent
commit
a991552709
  1. 2
      assets/css/style.css
  2. 2
      assets/css/style.css.map
  3. 8
      assets/css/style.less
  4. 3
      pages/shop/ShoppingCart/index.vue

2
assets/css/style.css

File diff suppressed because one or more lines are too long

2
assets/css/style.css.map

File diff suppressed because one or more lines are too long

8
assets/css/style.less

@ -2008,6 +2008,9 @@ page {
background-color: #f5f5f5; background-color: #f5f5f5;
z-index: 5; z-index: 5;
top: 0; top: 0;
/* #ifdef H5 */
top:calc(44px + env(safe-area-inset-top))
/* #endif */
} }
.shoppingCart .labelNav .item .iconfont { .shoppingCart .labelNav .item .iconfont {
@ -2028,6 +2031,9 @@ page {
z-index: 5; z-index: 5;
top: 0.76*100rpx; top: 0.76*100rpx;
border-bottom: 1px solid #f5f5f5; border-bottom: 1px solid #f5f5f5;
/* #ifdef H5 */
top:calc(44px + env(safe-area-inset-top) + 76rpx)
/* #endif */
} }
.shoppingCart .nav .administrate { .shoppingCart .nav .administrate {
@ -2221,6 +2227,8 @@ page {
bottom: 0; bottom: 0;
padding: 0 0.3*100rpx; padding: 0 0.3*100rpx;
border-top: 1px solid #eee; border-top: 1px solid #eee;
} }
.shoppingCart .iphonex-footer { .shoppingCart .iphonex-footer {

3
pages/shop/ShoppingCart/index.vue

@ -518,4 +518,7 @@
.footer-h5 { .footer-h5 {
bottom: 50px bottom: 50px
} }
.shoppingCart{
position: relative;
}
</style> </style>

Loading…
Cancel
Save