I need assistance in aligning the buttons and labels of my md-radio-button group vertically.
Check out my HTML code below:
<md-radio-group ng-model="merchant.type">
<md-radio-button value="small">One Branch</md-radio-button>
<md-radio-button value="medium">2-5 Branches</md-radio-button>
<md-radio-button value="large">6 or more Branches</md-radio-button>
</md-radio-group>
The current output looks like this:
https://i.sstatic.net/ERgqi.png
Any suggestions on how I can vertically align the labels with their respective buttons?