num-range.less 605 B

12345678910111213141516171819202122232425262728293031
  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. padding: 0px 0px;
  12. border: 1px solid #ccc;
  13. align-items: center;
  14. align-content: center;
  15. height: 100%;
  16. border-radius: 10px;
  17. padding: 0px 0px 0px 10px;
  18. }
  19. .left text, .right text {
  20. text-align: right;
  21. width: 40px;
  22. height: 100%;
  23. padding-right: 10px;
  24. background-color: rosybrown;
  25. border-top-right-radius: 10px;
  26. border-bottom-right-radius: 10px;
  27. color: white;
  28. }