num-range.less 561 B

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