navbar.wxss 547 B

123456789101112131415161718192021222324252627282930313233
  1. /* components/navbar/navbar.wxss */
  2. .nav-wrap {
  3. border-bottom: 1rpx solid rgba(0, 0, 0, 0.1);
  4. }
  5. .nav-wrap .nav-info {
  6. display: flex;
  7. align-items: center;
  8. position: relative;
  9. }
  10. .nav-wrap .nav-info .device-pic {
  11. margin-right: 12rpx;
  12. position: absolute;
  13. top: 0;
  14. left: 34rpx;
  15. display: flex;
  16. align-items: center;
  17. z-index: 999;
  18. width: 40rpx;
  19. }
  20. .nav-wrap .nav-info .device-pic image {
  21. height: 36rpx;
  22. }
  23. .nav-wrap .nav-info text {
  24. width: 100%;
  25. text-align: center;
  26. font-size: 35rpx;
  27. color: #000;
  28. font-weight: bold;
  29. }