Skip to content

Commit 4f8844a

Browse files
author
AMJones
committed
Fix for MORE extraneous ; in variables.
1 parent 40c0dcf commit 4f8844a

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"css"
1212
],
1313
"homepage": "https://www.github.com/strapless/grid",
14-
"version": "1.0.4",
14+
"version": "1.0.5",
1515
"authors": [
1616
{
1717
"name": "Aaron M Jones",

dist/css/strapless-grid.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Strapless Grid v1.0.4 (http://github.com/strapless/strapless)
2+
* Strapless Grid v1.0.5 (http://github.com/strapless/strapless)
33
* Influenced by Bootstrap (http://getbootstrap.com) and Flexbox Grid (http://flexboxgrid.com)
44
* Licensed under MIT (https://github.com/strapless/strapless/blob/master/LICENSE)
55
*/

dist/css/strapless-grid.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scss/_grid-variables.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ $column-lg-gap: $column-gap !default;
2020
$column-xl-gap: $column-gap !default;
2121

2222
$column-count: floor($grid-columns / ($grid-columns * .5)) !default; // 2
23-
$column-xs-count: floor($grid-columns / ($grid-columns * 1)) !default; // 1
23+
$column-xs-count: floor($grid-columns / ($grid-columns * 1)) !default; // 1
2424
$column-sm-count: $column-count !default;
25-
$column-lg-count: floor($grid-columns / ($grid-columns * .333333)) !default; // 3
26-
$column-xl-count: floor($grid-columns / ($grid-columns * .25)) !default; // 4
25+
$column-lg-count: floor($grid-columns / ($grid-columns * .333333)) !default; // 3
26+
$column-xl-count: floor($grid-columns / ($grid-columns * .25)) !default; // 4
2727

2828
// endregion //////////////////////////////////////////////////////////// End Sizing and Spacing

scss/_grid.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
@if $enable-framework == false {
66
/*!
7-
* Strapless Grid v1.0.4 (http://github.com/strapless/strapless)
7+
* Strapless Grid v1.0.5 (http://github.com/strapless/strapless)
88
* Influenced by Bootstrap (http://getbootstrap.com) and Flexbox Grid (http://flexboxgrid.com)
99
* Licensed under MIT (https://github.com/strapless/strapless/blob/master/LICENSE)
1010
*/

0 commit comments

Comments
 (0)