问题
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