fix(app, style)
This commit is contained in:
parent
5aaee31c49
commit
cf2b3f34ae
2 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
// instead of changes within BS3 itself
|
||||
.nav > li > a {
|
||||
padding: 10px 10px;
|
||||
padding: 8px 10px;
|
||||
}
|
||||
|
||||
.navbar-search-icon {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue