In an angular template file we have 2 tabs summary & preview, I have to add a link to that in the same line horizontally which is not part of the mat-tab-group, i.e. it is not a mat-tab.By wrapping the mat-tab-group with a div and placing the link in another div I can make them horizontally aligned but it opens up lot of empty space beneath which spoils the look.Should I make 'Preview' and 'View Survey Dashboard' part of the same label inside the 2nd tab with some empty space in-between - but in that case if you click preview or view dashboard it will have the same effect i.e. to preview section of the page, whereas I want to be transported to the dashboard.
Edit:1 Code snippet:
<mat-tab-group animationDuration="0ms" dynamicHeight="true"
(selectedTabChange)="tabClick($event)" id="Survey-lib-webapp">
<mat-tab label="Summary">
...
</mat-tab>
<mat-tab label="Preview">
...
</mat-tab>
</mat-tab-group>
it also scrolls
shouldn't it scroll? – Mosh Feu