123456789101112131415161718192021 |
- @import '../common/index.css';
- :host {
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
- width: 100%;
- }
- .van-tab__pane,
- :host {
- box-sizing: border-box;
- }
- .van-tab__pane {
- overflow-y: auto;
- -webkit-overflow-scrolling: touch;
- }
- .van-tab__pane--active {
- height: auto;
- }
- .van-tab__pane--inactive {
- height: 0;
- overflow: visible;
- }
|