Skip to content

Commit

Permalink
bellmaker container hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
herereadthis committed Aug 3, 2014
1 parent f22b019 commit da4c1fd
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bellmaker",
"version": "0.3.3",
"version": "0.3.5",
"authors": [
{
"name": "Jimmy Ha",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bellmaker",
"version": "0.3.4",
"version": "0.3.5",
"description": "Responsive CSS media query library for LESS and SASS, with device-agnostic and device-specific breakpoints",
"main": "index.html",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/css/main.less-minified.css

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

4 changes: 4 additions & 0 deletions src/css/main.less.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.bellmaker_container {
margin-right: auto;
margin-left: auto;
}
@media only screen and (min-width: 320px) {
.bellmaker_container {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion src/css/main.sass-minified.css

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

4 changes: 4 additions & 0 deletions src/css/main.sass.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.bellmaker_container {
margin-right: auto;
margin-left: auto;
}
@media only screen and (min-width: 320px) {
.bellmaker_container {
width: 100%;
Expand Down
4 changes: 4 additions & 0 deletions src/demo/basic_demo/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ code {
pre > code {
white-space: pre;
}
.bellmaker_container {
margin-right: auto;
margin-left: auto;
}
@media only screen and (min-width: 320px) {
.bellmaker_container {
width: 100%;
Expand Down
2 changes: 1 addition & 1 deletion src/demo/bootstrap_demo/css/main.css

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions src/less/page_layout.less
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

// classes to set page widths and grid patterns
.bellmaker_container {
margin-right: auto;
margin-left: auto;

@media @da_baseline {
width: @pw_baseline;
}
Expand Down
3 changes: 3 additions & 0 deletions src/sass/_page_layout.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

// classes to set page widths and grid patterns
.bellmaker_container {
margin-right: auto;
margin-left: auto;

@media #{$da_baseline} {
width: $pw_baseline;
}
Expand Down

0 comments on commit da4c1fd

Please sign in to comment.