index.wxss 432 B

123456789101112131415161718192021222324252627
  1. .sg-tabbar {
  2. position: fixed;
  3. bottom: 0;
  4. left: 0;
  5. width: 100%;
  6. justify-content: space-around;
  7. display: flex;
  8. align-items: center;
  9. border-top: 1px solid #ebedf0;
  10. padding: 8px 0;
  11. background: white;
  12. }
  13. .sg-tab-item.sg-active {
  14. color: #5693FC;
  15. }
  16. .sg-tab-item {
  17. display: flex;
  18. align-items: center;
  19. flex-direction: column;
  20. }
  21. .sg-icon {
  22. font-size: 1.2rem;
  23. }
  24. .sg-name {
  25. font-size: 0.8rem;
  26. margin-top: 5px;
  27. }