Skip to content

Commit

Permalink
Merge pull request #594 from MickeyKay/sass-fixes
Browse files Browse the repository at this point in the history
Add fixes for faulty Sass import paths and negative values.
Closes #588.
  • Loading branch information
obenland committed Aug 29, 2014
2 parents 6e4a3f5 + 4effd89 commit b76f394
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion sass/layout/_content-sidebar.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.content-area {
float: left;
margin: 0 -$size__site-sidebar 0 0;
margin: 0 (-$size__site-sidebar) 0 0;
width: $size__site-main;
}

Expand Down
2 changes: 1 addition & 1 deletion sass/layout/_sidebar-content.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.content-area {
float: right;
margin: 0 0 0 -$size__site-sidebar;
margin: 0 0 0 (-$size__site-sidebar);
width: $size__site-main;
}

Expand Down
4 changes: 2 additions & 2 deletions sass/site/_site.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// @import "layout/content-sidebar";
// @import "layout/sidebar-content";
// @import "../layout/content-sidebar";
// @import "../layout/sidebar-content";
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
Expand Down

0 comments on commit b76f394

Please sign in to comment.