@import './var';

.param-text-array {
  padding: calc((#{$input-height} - 30px) / 2) 0;
}

.param-arr-item {
  display: flex;
  align-items: center;
  height: 30px;
  margin: 0 0 4px;

  > input {
    flex: none;
    width: 160px;
  }

  //&:first-child:last-child {
  //
  //  .param-arr-ops-del {
  //    visibility: hidden;
  //    pointer-events: none;
  //  }
  //}
}

.param-arr-ops {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  height: 100%;
  padding: 0 10px;

  .param-arr-ops-add,
  .param-arr-ops-del {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 100%;
    border-radius: 4px;
    color: $primary;

    &:hover {
      background: rgba(0, 0, 0, 0.1);
    }
  }

  .param-arr-ops-del {
    color: $primary;
  }
}
