Skip to content
This repository has been archived by the owner on Jul 14, 2023. It is now read-only.

Commit

Permalink
Compartmentalize contrib variables
Browse files Browse the repository at this point in the history
  • Loading branch information
whmii committed Feb 28, 2017
1 parent 5077b4b commit a8d680a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 9 deletions.
8 changes: 0 additions & 8 deletions contrib/base/_grids.scss

This file was deleted.

3 changes: 3 additions & 0 deletions contrib/index.html
Expand Up @@ -54,6 +54,9 @@ <h3>Nested Grid</h3>
<div class="grid__column--full">
<h3>Push Grid</h3>
</div>
<div class="grid__column--thirds grid-push--3 box"></div>
<div class="grid__column box"></div>
<div class="grid__column--thirds box"></div>
<div class="grid__column--full">
<h3>Shift Grid</h3>
</div>
Expand Down
5 changes: 5 additions & 0 deletions contrib/patterns/_grid-nested.scss
@@ -1,3 +1,8 @@
$grid--nested: (
columns: 3,
gutter: 0,
);

.grid--nested {
@include grid-container($grid--nested);
}
Expand Down
4 changes: 4 additions & 0 deletions contrib/patterns/_grid.scss
@@ -1,3 +1,7 @@
$grid--rtl: (
direction: rtl,
);

.grid {
@include grid-container;
}
Expand Down
1 change: 0 additions & 1 deletion contrib/styles.scss
@@ -1,6 +1,5 @@
@import "../core/neat";

@import "base/grids";
@import "base/variables";

@import "patterns/box";
Expand Down

0 comments on commit a8d680a

Please sign in to comment.