How to change the width of the drop down in autocomplete angular material 2? I want to make the drop down the same width as the input box.
https://plnkr.co/edit/uFS9M3?p=preview
<md-input-container>
<input class="app-searchbox-input" mdInput placeholder="How to change the width of dropdown?" [mdAutocomplete]="auto" [formControl]="stateCtrl">
</md-input-container>
<md-autocomplete #auto="mdAutocomplete">
<md-option *ngFor="let state of filteredStates | async" [value]="state">
{{ state }}
</md-option>
</md-autocomplete>