angularjs - how to set font size of toolbar in ionic -
i using toolbar able make toolbar .but need customise toolbar .actually trying set different font size default in button , need give different width of buttons default .
i have button bar
<div class="button-bar"> <a class="button button-small" ng-click="handlerbuttonclick('a')" ng-class="{'button_active':activecontentarea==='a'}">abc</a> <a class="button button-small" ng-click="handlerbuttonclick('r')" ng-class="{'button_active':activecontentarea==='r'}">rnf </a> <a class="button button-small" ng-click="handlerbuttonclick('d')" ng-class="{'button_active':activecontentarea==='d'}">dfff</a> <a class="button button-small" ng-click="handlerbuttonclick('n')" ng-class="{'button_active':activecontentarea==='n'}">ndsdf</a> </div>
i need override default behaviour mean override fontsize of text , width of buttons here plunker http://plnkr.co/edit/egapwudpgknwdnozmjwu?p=preview
here's how modify font-size , width of bar buttons
.button-bar > .button { flex: none; /* in order modify width */ width: 50px; font-size: 24px; }
Comments
Post a Comment