num-range.less 457 B

1234567891011121314151617181920212223242526272829
  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: #666;
  20. }
  21. input {
  22. font-size: 14px;
  23. color: #333;
  24. }
  25. }