Skip to content

Commit

Permalink
Base V3.2.1
Browse files Browse the repository at this point in the history
- Fixed .container-full bug for mobile, tablet, desktop and HD devices
- Version bump for style.scss, package.json and bower.json
  • Loading branch information
matthewhartman committed Sep 10, 2016
1 parent 53b853c commit ae8a687
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 31 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "base",
"version": "3.2.0",
"version": "3.2.1",
"homepage": "http://matthewhartman.github.io/base/",
"authors": [
"Matthew Hartman <[email protected]>"
Expand Down
6 changes: 6 additions & 0 deletions changelog.markdown
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Base 2 Change Log


## [3.2.1] - 2016-09-10
### Base V3.2.1
- Fixed .container-full bug for mobile, tablet, desktop and HD devices
- Version bump for style.scss, package.json and bower.json


## [3.2.0] - 2016-09-07
### Base V3.2.0
- Fixed .container-full for mobile, tablet, desktop and HD devices
Expand Down
14 changes: 10 additions & 4 deletions dist/css/styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/css/styles.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "getbase",
"version": "3.2.0",
"version": "3.2.1",
"description": "A Rock Solid, Responsive HTML/CSS Framework built to work on all devices big and small.",
"homepage": "http://getbase.org/",
"scripts": {
Expand Down
14 changes: 10 additions & 4 deletions src/css/styles.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/css/styles.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/scss/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Base Stylesheet - http://getbase.org
// Author: Matthew Hartman - http://www.matthewhartman.com.au/
// Version: 3.2.0 - Last Updated: September 07, 2016
// Version: 3.2.1 - Last Updated: September 10, 2016
========================================================================== */

Expand Down
27 changes: 9 additions & 18 deletions src/scss/base/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,48 +53,39 @@

// Medium Device Container
@include breakpoint(m) {
.container {
width: $container-m;
}
.container { width: $container-m; }
.container-m, .container-full-m {
padding-left: $grid-gutter;
padding-right: $grid-gutter;
margin-left: auto;
margin-right: auto;
}
.container-m {
width: $container-m;
}
.container-m { width: $container-m; }
.container-full-m { width: auto; }
}
// Large Device Container
@include breakpoint(l) {
.container {
width: $container-l;
}
.container { width: $container-l; }
.container-l, .container-full-l {
padding-left: $grid-gutter;
padding-right: $grid-gutter;
margin-left: auto;
margin-right: auto;
}
.container-l {
width: $container-l;
}
.container-l { width: $container-l; }
.container-full-l { width: auto; }
}
// Extra Large Device Container
@include breakpoint(xl) {
.container {
width: $container-xl;
}
.container { width: $container-xl; }
.container-xl, .container-full-xl {
padding-left: $grid-gutter;
padding-right: $grid-gutter;
margin-left: auto;
margin-right: auto;
}
.container-xl {
width: $container-xl;
}
.container-xl { width: $container-xl; }
.container-full-xl { width: auto; }
}

// Mobile-first Grid Columns - Global Rules
Expand Down

0 comments on commit ae8a687

Please sign in to comment.