123456789101112131415161718 |
- //提升H5端uni.toast()的层级,避免被modal等遮盖
- /* #ifdef H5 */
- uni-toast {
- z-index: 10090;
- }
- uni-toast .uni-toast {
- z-index: 10090;
- }
- /* #endif */
- // 隐藏scroll-view的滚动条
- ::-webkit-scrollbar {
- display: none;
- width: 0 !important;
- height: 0 !important;
- -webkit-appearance: none;
- background: transparent;
- }
|