Illep
Illep

Reputation: 16841

Increase the font size and height of Title field of the tab panel

Ext.define('ProjectExample.view.example' ,{
    extend:'Ext.tab.Panel',
    title:'TITLE BAR',
    layout:'fit',
    ....

This is my Tab Panel Application, i need to Increase the text size of the title attribute, and increase the height of it. How can i do this ?

Upvotes: 0

Views: 1149

Answers (1)

annu balti
annu balti

Reputation: 21

You can do it from CSS. check the Div id for tab panel and re size the title font-size.

Upvotes: 1

Related Questions