This repository was archived by the owner on Jul 14, 2023. It is now read-only.
Commit 9ea34b6 1 parent b51fb75 commit 9ea34b6 Copy full SHA for 9ea34b6
File tree 4 files changed +5
-4
lines changed
4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ project adheres to [Semantic Versioning](http://semver.org).
5
5
6
6
## [ Unreleased (` master ` )] [ unreleased ]
7
7
8
- Nothing at the moment.
8
+ - Extend grid-media to accept multiple custom grids
9
9
10
10
## [ 2.1.0] - 2017-06-27
11
11
Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ var paths = {
12
12
gulp . task ( "sass" , function ( ) {
13
13
return gulp . src ( paths . scss )
14
14
. pipe ( sass ( {
15
- sourcemaps : true
15
+ sourcemaps : true ,
16
+ precision : 6
16
17
} ) )
17
18
. pipe ( autoprefix ( "last 2 versions" ) )
18
19
. pipe ( gulp . dest ( "./contrib" ) )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ $grid--nested: (
4
4
);
5
5
6
6
.grid--nested {
7
- @include grid-container ( $grid--nested ) ;
7
+ @include grid-container ;
8
8
}
9
9
10
10
.grid--nested__column {
Original file line number Diff line number Diff line change 1
1
module SassSupport
2
2
def generate_css
3
3
_mkdir ( "tmp" )
4
- `sass -I . --update spec/fixtures:tmp --quiet`
4
+ `sass -I . --update spec/fixtures:tmp --quiet --precision 5 `
5
5
end
6
6
7
7
def clean_up
You can’t perform that action at this time.
0 commit comments