num-range.less 519 B

12345678910111213141516171819202122232425262728
  1. /* components/num-range/num-range.wxss */
  2. .content {
  3. display: flex;
  4. justify-content: space-around;
  5. align-items: center;
  6. height: 35px;
  7. }
  8. .right, .left {
  9. height: 100%;
  10. display: flex;
  11. border-radius: 20px;
  12. align-items: center;
  13. justify-content: space-between;
  14. border: 1px solid #ccc;
  15. display: flex;
  16. padding: 0px 5px;
  17. .unit {
  18. text-align: center;
  19. color: #333;
  20. border-top-right-radius: 17.5px;
  21. border-bottom-right-radius: 17.5px;
  22. font-size: 12px;
  23. width: 50px;
  24. }
  25. }