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

http://plnkr.co/edit/4d9x2iczjicgdjezr6wg?p=preview


Comments

Popular posts from this blog

angularjs - ADAL JS Angular- WebAPI add a new role claim to the token -

php - CakePHP HttpSockets send array of paramms -

node.js - Using Node without global install -