Text area Widget name displaying on top

I am trying to make this text Area name display on the left as it would appear on a form, but it always displays on top.
image

I’d like it to look like this, without making a form:

image

Hi,

I’d recommend adding custom styles to your text field, e.g.:

<textField caption="Text Field" stylename="caption-on-left"/>
.v-slot-caption-on-left .v-has-caption {
  white-space: nowrap;

  .v-caption {
    display: inline-block;
    line-height: $v-unit-size;
    padding-right: .5em;
  }
}

Screenshot 2020-11-18 at 12.30.57

Regards,
Gleb

thank you, this worked great!