Commit 85c0ce2e authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Reduce sidebar width by 10px

parent 31cddc15
...@@ -52,3 +52,8 @@ $nprogress-color: #c0392b; ...@@ -52,3 +52,8 @@ $nprogress-color: #c0392b;
* Font sizes * Font sizes
*/ */
$list-font-size: 15px; $list-font-size: 15px;
/**
* Sidebar navigation width
*/
$sidebar_width: 240px;
.page-with-sidebar { .page-with-sidebar {
background: #F5F5F5; background: #F5F5F5;
...@@ -100,17 +102,17 @@ ...@@ -100,17 +102,17 @@
@mixin expanded-sidebar { @mixin expanded-sidebar {
.page-with-sidebar { .page-with-sidebar {
padding-left: 250px; padding-left: $sidebar_width;
} }
.sidebar-wrapper { .sidebar-wrapper {
width: 250px; width: $sidebar_width;
.nav-sidebar { .nav-sidebar {
margin-top: 20px; margin-top: 20px;
position: fixed; position: fixed;
top: 45px; top: 45px;
width: 250px; width: $sidebar_width;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment