_value-mappings.scss 579 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .mapping-row {
  2. display: flex;
  3. margin-bottom: 10px;
  4. }
  5. .mapping-row-type {
  6. margin-right: 5px;
  7. }
  8. .mapping-row-input {
  9. margin-right: 5px;
  10. }
  11. .add-mapping-row {
  12. display: flex;
  13. overflow: hidden;
  14. height: 37px;
  15. cursor: pointer;
  16. border-radius: $border-radius;
  17. width: 200px;
  18. }
  19. .add-mapping-row-icon {
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. width: 36px;
  24. background-color: $green;
  25. }
  26. .add-mapping-row-label {
  27. align-items: center;
  28. display: flex;
  29. padding: 5px 8px;
  30. background-color: $input-label-bg;
  31. width: calc(100% - 36px);
  32. }