Skip to content

Commit

Permalink
Fixes pathing and errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethormandy committed Jan 3, 2014
1 parent 58e4dfd commit 2a05011
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 28 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ pkg/
*.sublime-*
build/
*.bundle/
components/
build/
22 changes: 11 additions & 11 deletions component.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@
"version": "1.0.9",
"keywords": ["harp", "scss", "sass", "susy"],
"dependencies": {
"harp/component": "*"
"harp/compass": "*"
},
"development": {},
"license": "",
"files": [
"scss/_susy.scss"
"scss/susy/_background.scss"
"scss/susy/_functions.scss"
"scss/susy/_grid.scss"
"scss/susy/_isolation.scss"
"scss/susy/_margin.scss"
"scss/susy/_media.scss"
"scss/susy/_padding.scss"
"scss/susy/_settings.scss"
"scss/susy/_support.scss"
"scss/_susy.scss",
"scss/susy/_background.scss",
"scss/susy/_functions.scss",
"scss/susy/_grid.scss",
"scss/susy/_isolation.scss",
"scss/susy/_margin.scss",
"scss/susy/_media.scss",
"scss/susy/_padding.scss",
"scss/susy/_settings.scss",
"scss/susy/_support.scss",
"scss/susy/_units.scss"
]
}
6 changes: 3 additions & 3 deletions scss/susy/_background.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// ---------------------------------------------------------------------------
// Imports

@import "../../harp-compass/layout/grid-background";
@import "../../harp-compass/css3/background-origin";
@import "../../harp-compass/css3/background-clip";
@import "../../../harp-compass/scss/layout/grid-background";
@import "../../../harp-compass/scss/css3/background-origin";
@import "../../../harp-compass/scss/css3/background-clip";

// ---------------------------------------------------------------------------
// Susy Grid Background
Expand Down
2 changes: 1 addition & 1 deletion scss/susy/_functions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Imports

// We need access to some basic font settings for handling media-queries.
@import "../../harp-compass/typography/vertical_rhythm";
@import "../../../harp-compass/scss/typography/vertical_rhythm";

// For now, we also need this...
$browser-default-font-size-px : 16px;
Expand Down
4 changes: 2 additions & 2 deletions scss/susy/_grid.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// ---------------------------------------------------------------------------
// Imports

@import "../../harp-compass/utilities/general/clearfix";
@import "../../harp-compass/css3/box-sizing";
@import "../../../harp-compass/scss/utilities/general/clearfix";
@import "../../../harp-compass/scss/css3/box-sizing";

// ---------------------------------------------------------------------------
// Border-Box Sizing
Expand Down
22 changes: 11 additions & 11 deletions scss/susy/_support.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@
// ---------------------------------------------------------------------------
// Imports

@import "../../harp-compass/support";
@import "../../../harp-compass/scss/support";

// ---------------------------------------------------------------------------
// Helpers

// A debug tool for checking browser support
@mixin debug-support-matrix($experimental: true, $ie: true) {
@debug #{'$moz-'}$experimental-support-for-mozilla
#{'$webkit-'}$experimental-support-for-webkit
#{'$microsoft-'}$experimental-support-for-microsoft
#{'$opera-'}$experimental-support-for-opera
#{'$khtml-'}$experimental-support-for-khtml;
@debug #{'$ie6-'}$legacy-support-for-ie6
#{'$ie7-'}$legacy-support-for-ie7
#{'$ie8-'}$legacy-support-for-ie8;
}
// @mixin debug-support-matrix($experimental: true, $ie: true) {
// @debug #{'$moz-'}$experimental-support-for-mozilla
// #{'$webkit-'}$experimental-support-for-webkit
// #{'$microsoft-'}$experimental-support-for-microsoft
// #{'$opera-'}$experimental-support-for-opera
// #{'$khtml-'}$experimental-support-for-khtml;
// @debug #{'$ie6-'}$legacy-support-for-ie6
// #{'$ie7-'}$legacy-support-for-ie7
// #{'$ie8-'}$legacy-support-for-ie8;
// }

// Capture the current exerimental support settings
@function capture-experimental-matrix() {
Expand Down

0 comments on commit 2a05011

Please sign in to comment.