_value-mappings.scss 602 B

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