app.wxss 379 B

123456789101112131415161718192021222324252627
  1. /**app.wxss**/
  2. .container {
  3. width:100%;
  4. justify-content: flex-start;
  5. }
  6. ::-webkit-scrollbar {
  7. width: 0;
  8. height: 0;
  9. color: transparent;
  10. display: none;
  11. }
  12. .FlexColumn {
  13. display: flex;
  14. flex-direction: column;
  15. align-items: center;
  16. justify-content: center;
  17. }
  18. .FlexRow {
  19. display: flex;
  20. flex-direction: row;
  21. align-items: center;
  22. justify-content: center;
  23. }