fix(app, style)

This commit is contained in:
Rushabh Mehta 2018-10-02 11:06:37 +05:30
parent 5aaee31c49
commit cf2b3f34ae
2 changed files with 3 additions and 3 deletions

View file

@ -225,11 +225,11 @@ def serve(port=8000, profile=False, site=None, sites_path='.'):
if not os.environ.get('NO_STATICS'):
application = SharedDataMiddleware(application, {
'/assets': os.path.join(sites_path, 'assets'),
'/assets': frappe.safe_decode(os.path.join(sites_path, 'assets')),
})
application = StaticDataMiddleware(application, {
'/files': os.path.abspath(sites_path)
'/files': frappe.safe_decode(os.path.abspath(sites_path))
})
application.debug = True

View file

@ -19,7 +19,7 @@
// instead of changes within BS3 itself
.nav > li > a {
padding: 10px 10px;
padding: 8px 10px;
}
.navbar-search-icon {