@import "../common/colors";
@import "../common/mixins";
@import "../common/media_querys";

.flow {
  width: 100%;
  min-height: 900px;
  height: 100%;
  background: $color-dark-background;

  .flow-component {
    cursor: -webkit-grab;

    &.isDraging {
      cursor: -webkit-grabbing;
    }

    .flow-node-rect {
      fill: $color-dark-card;
    }


    text.flow-node-title {
      fill: #bbbbbb;
    }

    .flow-port {
      fill: $color-dark;
    }

  }

}