How can i align vertically in the center one mat-hint or label inside one div with mat-radio-group?
Today, my code has this sequency:
<div fxLayout="row" fxLayoutAlign="center center">
<div fxLayout="column" fxFlex="100%">
<div fxLayout="row">
<div fxLayout="column" fxFlex="30%">
<mat-hint>{{ 'É bivolt?' | translate: moduleName }}</mat-hint>
</div>
<div fxLayout="column" fxFlex="70%">
<mat-radio-group id="rgpStaAparelhoBivoltNewUcServicoRessarcDanoEquipEletr"
[(ngModel)]="newUcServicoRessarcDanoEquipEletr.staAparelhoBivolt" [disabled]="staViewing">
<mat-radio-button value="S">{{ 'Sim' | translate: moduleName }}</mat-radio-button>
<mat-radio-button value="N">{{ 'Não' | translate: moduleName }}</mat-radio-button>
<mat-radio-button value="D">{{ 'Não sei' | translate: moduleName }}</mat-radio-button>
</mat-radio-group>
</div>
</div>
</div>
</div>
I'ld like to align the mat-hint in the same row of the values from the mat-radio-group without css.