Skip to content

Commit

Permalink
Base V3.2.0
Browse files Browse the repository at this point in the history
- Fixed .container-full for mobile, tablet, desktop and HD devices
- Version bump for style.scss, package.json and bower.json
  • Loading branch information
Matthew Hartman committed Sep 7, 2016
1 parent 7f0fc02 commit 53b853c
Show file tree
Hide file tree
Showing 10 changed files with 59 additions and 119 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.1.5",
"version": "3.2.0",
"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.0] - 2016-09-07
### Base V3.2.0
- Fixed .container-full for mobile, tablet, desktop and HD devices
- Version bump for style.scss, package.json and bower.json


## [3.1.5] - 2016-07-02
### Base V3.1.5
- Fixed IE bug with placeholder color override
Expand Down
49 changes: 14 additions & 35 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.1.5",
"version": "3.2.0",
"description": "A Rock Solid, Responsive HTML/CSS Framework built to work on all devices big and small.",
"homepage": "http://getbase.org/",
"scripts": {
Expand Down
49 changes: 14 additions & 35 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.1.5 - Last Updated: July 02, 2016
// Version: 3.2.0 - Last Updated: September 07, 2016
========================================================================== */

Expand Down
10 changes: 3 additions & 7 deletions src/scss/base/_grid-non-responsive.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,14 @@
}

// Mobile Container
.container {
.container, .container-full {
padding-left: $grid-gutter;
padding-right: $grid-gutter;
margin-left: auto;
margin-right: auto;
width: $container-desktop;
}
.container-full {
padding-left: 0;
padding-right: 0;
margin-left: auto;
margin-right: auto;
.container {
width: $container-desktop;
}

// Grid Columns - Global Rules
Expand Down
54 changes: 17 additions & 37 deletions src/scss/base/_grid.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,76 +44,56 @@
}

// Container
.container {
.container, .container-full {
padding-left: $grid-gutter;
padding-right: $grid-gutter;
margin-left: auto;
margin-right: auto;
}
.container-full {
padding-left: 0;
padding-right: 0;
margin-left: auto;
margin-right: auto;
}

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

Expand Down

0 comments on commit 53b853c

Please sign in to comment.