shripalsoni04 / nativescript-angular-drawer-template

A starter project to quickly create nativescript angular project with drawer pages.
MIT License
46 stars 9 forks source link

Styling the sidebar #4

Closed leocrawf closed 7 years ago

leocrawf commented 7 years ago

I tried styling the header of the sidebar using the this code on the core.light.android.css file but nothing changed in the app:

 .sidedrawer-header{height:148;background-color:#564215;width:100%}.

What I am I doing wrong?

shripalsoni04 commented 7 years ago

To change style of side-drawer, you need to do changes in css file of side-drawer-page.component. Changes in app.css will not be reflected because, rule for .sidedrawer-header class is already defined in the css file of that component.

leocrawf commented 7 years ago

By golly I am stupid! Major overlook. Thank you.