I am using tabs from Material UI tabs (https://material.angular.io/components/tabs/overview). How do I make it so that my tabs are below the content area?
<md-tab-group>
<md-tab label="Tab 1">
Content
</md-tab>
<md-tab label="Tab 2">
Content
</md-tab>
</md-tab-group>
I tried putting the following on md-tab-group, but it appeared to have to effect:
md-tabs-align="bottom"
I would also like the tab content to fill up the entire div instead of just being sized to the small amount of text I have.