Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

29 righe
476 B

  1. /* Components/tabBar/tabBar.wxss */
  2. @import "../../iconfont.wxss";
  3. .tabbar{
  4. background: #fff;
  5. display: flex;
  6. justify-content: space-around;
  7. position: fixed;
  8. bottom: 0;
  9. width: 100%;
  10. height: 50px;
  11. border-top: 1px solid #ccc;
  12. z-index: 999;
  13. }
  14. .navigator-hover{
  15. color: #0ac4ff;
  16. }
  17. .tabbar .navigator{
  18. display: flex;
  19. flex-wrap: wrap;
  20. align-content: center;
  21. text-align: center;
  22. }
  23. .tabbar .navigator icon{
  24. width: 100%;
  25. }
  26. .tabbar .navigator text{
  27. width: 100%;
  28. }