How to change height of tab header

I have an angular tab control shown below. How can I change the height of the tab header? Thanks
 
                       <ejs-tab>
                                <e-tabitems>
                                    <e-tabitem >
                                        <ng-template #headerText>
                                            <div> Tab1 </div>
                                        </ng-template>
                                        <ng-template #content>
                                            
                                        </ng-template>
                                    </e-tabitem>
                                        
                                    <e-tabitem>
                                        <ng-template #headerText>
                                            <div> Tab2 </div>
                                        </ng-template>
                                        <ng-template #content>
                                            
                                        </ng-template>
                                    </e-tabitem>
                                </e-tabitems>
                            </ejs-tab>

1 Reply 1 reply marked as answer

HB Hareesh Balasubramanian Syncfusion Team February 10, 2021 05:55 PM UTC

Hi Huifei, 

Greetings from Syncfusion Support..! 

We have prepared a sample based on your shared query using CSS, which can be viewed from the following link. 


.e-tab .e-tab-header { 
  background: #badfba !important; 
  height: 50px !important; 
} 

Kindly try the above solution and get back to us if you need any further assistance. 

Regards, 
Hareesh 


Marked as answer
Loader.
Up arrow icon