1234567891011121314151617181920212223242526 |
- /**app.wxss**/
- page {
- height: 100%;
- }
- .container {
- width: 100%;
- height: 100%;
- background: #FAF8FB;
- padding-top:72rpx;
- box-sizing: border-box;
- }
- .content {
- height:100%;
- }
- .content scroll-view{
- height: 100%;
- }
- ::-webkit-scrollbar{
- width: 0;
- height: 0;
- color: transparent;
- }
|