Size of tab in sencha

…衆ロ難τιáo~ 提交于 2019-12-11 08:22:58

问题



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:


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;
}


来源:https://stackoverflow.com/questions/10210114/size-of-tab-in-sencha

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!