index.css 352 B

123456789101112131415161718192021
  1. @import '../common/index.css';
  2. :host {
  3. -webkit-flex-shrink: 0;
  4. flex-shrink: 0;
  5. width: 100%;
  6. }
  7. .van-tab__pane,
  8. :host {
  9. box-sizing: border-box;
  10. }
  11. .van-tab__pane {
  12. overflow-y: auto;
  13. -webkit-overflow-scrolling: touch;
  14. }
  15. .van-tab__pane--active {
  16. height: auto;
  17. }
  18. .van-tab__pane--inactive {
  19. height: 0;
  20. overflow: visible;
  21. }