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.

25 lines
761 B

2 months ago
  1. @import "./mixin.scss";
  2. /* #ifndef APP-NVUE */
  3. // 由于uview-plus是基于nvue环境进行开发的,此环境中普通元素默认为flex-direction: column;
  4. // 所以在非nvue中,需要对元素进行重置为flex-direction: column; 否则可能会表现异常
  5. // 2024-04-09由于微信小程序会提示 Some selectors are not allowed in component wxss所以注释以下几行 // view,
  6. // scroll-view,
  7. // swiper-item,
  8. .u-empty,
  9. .u-empty__wrap,
  10. .u-tabs,
  11. .u-tabs__wrapper,
  12. .u-tabs__wrapper__scroll-view-wrapper,
  13. .u-tabs__wrapper__scroll-view,
  14. .u-tabs__wrapper__nav,
  15. .u-tabs__wrapper__nav__line {
  16. display: flex;
  17. flex-direction: column;
  18. flex-shrink: 0;
  19. flex-grow: 0;
  20. flex-basis: auto;
  21. align-items: stretch;
  22. align-content: flex-start;
  23. }
  24. /* #endif */