Size of tab in sencha

2019-08-04 02:01发布


I want to modify the size of the tab in css. I found the variable $tabs-bottom-icon-size which modify only the size of the icons in the tab.
Is there any variable which allows me to modify the size of the entire tab?
And if not,how can i do this?
Thank you.

1条回答
唯我独甜
2楼-- · 2019-08-04 02:06

Unfortunately not. You will have to just override the height of both the .x-tabbar and .x-tab classes.

.x-tabbar {
    height: 5em;
}
.x-tab {
    height: 4.5em;
}
查看更多
登录 后发表回答