调整商品详情页面的分享按钮位置

This commit is contained in:
2026-07-14 17:35:16 +08:00
parent 9403d22544
commit 5222ec82b0
6 changed files with 75 additions and 9 deletions
+31
View File
@@ -19,3 +19,34 @@ body {
font-family: var(--font-body);
margin: 0;
}
/* 全局隐藏滚动条(H5 + 小程序均可滚动,仅隐藏轨道) */
html,
page,
body,
#app,
.taro_page,
.taro_router,
.taro-tabbar__panel {
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* legacy Edge */
}
html::-webkit-scrollbar,
page::-webkit-scrollbar,
body::-webkit-scrollbar,
#app::-webkit-scrollbar,
.taro_page::-webkit-scrollbar,
.taro_router::-webkit-scrollbar,
.taro-tabbar__panel::-webkit-scrollbar,
*::-webkit-scrollbar {
width: 0 !important;
height: 0 !important;
display: none !important;
background: transparent;
}
* {
scrollbar-width: none;
-ms-overflow-style: none;
}