index.less 531 B

1234567891011121314151617181920212223242526272829303132
  1. /* pages/test-components/index.wxss */
  2. page {
  3. background-color: #f2f2f2;
  4. height: 100vh;
  5. overflow: hidden;
  6. display: flex;
  7. flex-direction: column;
  8. width: 100%;
  9. }
  10. .page-container {
  11. flex: 1 auto;
  12. overflow-x: hidden;
  13. overflow-y: auto;
  14. }
  15. .page-footer {
  16. // position: absolute;
  17. // bottom: 0;
  18. // left: 0;
  19. // right: 0;
  20. padding: 40rpx 30rpx;
  21. // padding-bottom: env(safe-area-inset-bottom);
  22. background-color: #fff;
  23. }
  24. .container {
  25. margin: 26rpx;
  26. border-radius: 12rpx;
  27. overflow: hidden;
  28. height: auto;
  29. }