app.wxss 430 B

12345678910111213141516171819202122232425262728
  1. ::-webkit-scrollbar {
  2. width: 0;
  3. height: 0;
  4. color: transparent;
  5. display: none;
  6. }
  7. .FlexColumn {
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. justify-content: center;
  12. }
  13. .FlexRow {
  14. display: flex;
  15. flex-direction: row;
  16. align-items: center;
  17. justify-content: center;
  18. }
  19. .container {
  20. width:100%;
  21. color: #1e1e1e;
  22. justify-content: flex-start;
  23. font-weight: 700;
  24. background-color: #F2F2F2;
  25. }