Viewing 1 replies (of 1 total)
  • Plugin Author GusRuss89

    (@gusruss89)

    Hi @marcinok,

    It depends on exactly what you want to do.

    If you want to sort your fields into columns, you can upgrade to the pro version which gives layout attributes to all your fields.

    If you just want to limit text-field widths, you can add some custom CSS under Customize > Material Design Forms > Custom CSS. Here’s some example CSS.

    .mdc-textfield {
        max-width: 300px;
    }

    That will also affect text-areas. If you just want it to be for single-line inputs, you can use this CSS instead.

    .mdc-textfield:not(.mdc-textfield--multiline) {
        max-width: 300px;
    }

    Thanks,
    Angus

Viewing 1 replies (of 1 total)

The topic ‘md-text fieltd width’ is closed to new replies.