app.wxss 333 B

12345678910111213141516171819202122232425262728
  1. /**app.wxss**/
  2. page {
  3. height: 100%;
  4. }
  5. .container {
  6. width: 100%;
  7. height: 100%;
  8. background: #FAF8FB;
  9. padding-top:72rpx;
  10. box-sizing: border-box;
  11. }
  12. .content {
  13. width: 100%;
  14. height:100%;
  15. overflow: hidden;
  16. }
  17. .content scroll-view{
  18. height: 100%;
  19. }
  20. ::-webkit-scrollbar{
  21. width: 0;
  22. height: 0;
  23. color: transparent;
  24. }