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