_value-mappings.scss 490 B

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