@import "./mixin";
.ws-state-textarea {
  position: relative;
  textarea {
    @include placeholder(var(--v-textSecondary-base));
    width: 100%;
    padding: 8px 12px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--v-textPrimary-base);
    outline: none;
    position: relative;
    z-index: 1;
    &:focus {
      & ~ .ws-state-textarea__bg {
        border: solid 2px var(--v-appbarTitleActive-base);
      }
    }
  }
  .ws-state-textarea__bg {
    position: absolute;
    border-radius: 8px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--v-white-base);
    border: solid 1px var(--v-inputBorder-base);
    pointer-events: none;
    z-index: 0;
  }
}
