index.scss 548B

12345678910111213141516171819202122232425262728
  1. .Page.myMessage {
  2. background: #F8F8F8;
  3. > scroll-view {
  4. width: 100%;
  5. height: 100%;
  6. .PageContent {
  7. position: relative;
  8. overflow: hidden;
  9. min-height: 100vh;
  10. padding: 0 30px;
  11. >view {
  12. margin-top: 30px;
  13. }
  14. > .PageBottom {
  15. text-align: center;
  16. font-size: 0;
  17. white-space: nowrap;
  18. > text {
  19. display: inline-block;
  20. font-size: 28px;
  21. color: #666;
  22. line-height: 40px;
  23. margin: 20px auto;
  24. }
  25. }
  26. }
  27. }
  28. }