Skip to content
This repository has been archived by the owner on Aug 2, 2019. It is now read-only.

Commit

Permalink
removing bang global from foundation
Browse files Browse the repository at this point in the history
  • Loading branch information
daigofuji committed Apr 3, 2015
1 parent 1078d81 commit ae5f046
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bower_components/foundation/scss/foundation/_functions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ $rem-base: 16px !default;
$modules: () !default;
@mixin exports($name) {
// Import from global scope
$modules: $modules !global;
$modules: $modules;
// Check if a module is already on the list
$module_index: index($modules, $name);
@if (($module_index == null) or ($module_index == false)) {
$modules: append($modules, $name) !global;
$modules: append($modules, $name);
@content;
}
}
Expand Down
2 changes: 1 addition & 1 deletion css/style.css

Large diffs are not rendered by default.

0 comments on commit ae5f046

Please sign in to comment.