Reduce sidebar width by 10px

This commit is contained in:
Dmitriy Zaporozhets
2015-01-18 19:53:46 -08:00
parent 31cddc152c
commit 85c0ce2e1a
2 changed files with 10 additions and 3 deletions
@@ -52,3 +52,8 @@ $nprogress-color: #c0392b;
* Font sizes
*/
$list-font-size: 15px;
/**
* Sidebar navigation width
*/
$sidebar_width: 240px;
@@ -1,3 +1,5 @@
.page-with-sidebar {
background: #F5F5F5;
@@ -100,17 +102,17 @@
@mixin expanded-sidebar {
.page-with-sidebar {
padding-left: 250px;
padding-left: $sidebar_width;
}
.sidebar-wrapper {
width: 250px;
width: $sidebar_width;
.nav-sidebar {
margin-top: 20px;
position: fixed;
top: 45px;
width: 250px;
width: $sidebar_width;
}
}