I have something like this:
How is it possible to make the line under the "Date of recruitment" and the "down array" adapt to half of the layout as in flex="50" for example. It is pretty easy for normal input fields.
Current markup:
<md-content layout-padding>
<form>
<div layout-gt-xs="row">
<md-input-container class="md-block" flex-gt-xs>
<label> date </label>
<md-datepicker ng-model="cv.contract.dateOfRecruitment"></md-datepicker>
</md-input-container>
<md-input-container class="md-block" flex-gt-xs>
<label> months </label>
<input required ng-model="cv.contract.months" ng-pattern="/^[1-9][0-9]*$/" />
</md-input-container>
</div>
</form>
</md-content>