.taro-textarea {
  overflow: hidden;
  position: relative;
  display: block;
  height: 1.4em;
  min-height: 1.4em;
  white-space: nowrap;
  text-overflow: clip;
  color: #333;
}
.taro-textarea__content {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 20px;
  font-size: inherit;
}
.taro-textarea__placeholder {
  position: absolute;
  font-size: inherit;
  color: #ccc;
}
.taro-textarea__main {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  text-align: inherit;
  text-overflow: inherit;
  font-family: inherit;
  white-space: normal;
  overflow: hidden;
  resize: none;
  z-index: 1;
}