I'm encountering an issue with styling the md-tab component in Angular 2. While I understand that Angular 2 Materials is currently under development, I am wondering if there is a way to customize it, such as removing the bottom-radius. Below is an example of the code:
<md-card>
<md-tab-group [selectedIndex]="1">
<md-tab>
<template md-tab-label>
MY FILES
</template>
</md-tab>
<md-tab>
<template md-tab-label>
ALL FILES
</template>
</md-tab>
<md-tab>
<template md-tab-label>
MY INTERESTS
</template>
</md-tab>
</md-tab-group>
</md-card>