app.wxss 432 B

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