vue.scss 354 B

123456789101112131415161718
  1. //提升H5端uni.toast()的层级,避免被modal等遮盖
  2. /* #ifdef H5 */
  3. uni-toast {
  4. z-index: 10090;
  5. }
  6. uni-toast .uni-toast {
  7. z-index: 10090;
  8. }
  9. /* #endif */
  10. // 隐藏scroll-view的滚动条
  11. ::-webkit-scrollbar {
  12. display: none;
  13. width: 0 !important;
  14. height: 0 !important;
  15. -webkit-appearance: none;
  16. background: transparent;
  17. }