app.wxss 454 B

123456789101112131415161718192021222324252627
  1. /**app.wxss**/
  2. page{
  3. width: 100%;
  4. height: 100vh;
  5. background-color: #20223b;
  6. --tips-btn: 1.05em;
  7. }
  8. .container {
  9. position: absolute;
  10. top: 0;
  11. bottom: 0;
  12. left: 0;
  13. right: 0;
  14. display: flex;
  15. flex-direction: column;
  16. align-items: center;
  17. justify-content: space-between;
  18. box-sizing: border-box;
  19. }
  20. .basePage{
  21. min-height: 100vh;
  22. width: 100vw;
  23. color: #bfcbd9;
  24. font-size: 14px;
  25. font-family: PingFang SC;
  26. padding-bottom: 2em;
  27. }