Skip to content

Commit

Permalink
Merge pull request #17 from andimal/bug/vars-and-omega-fix
Browse files Browse the repository at this point in the history
Omega & Vars Fixes
  • Loading branch information
andimal committed Apr 1, 2016
2 parents 8491458 + ce0e714 commit 5f868a2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 15 deletions.
3 changes: 3 additions & 0 deletions app/assets/stylesheets/manhattan/_mixins.sass
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@
> [class*=" col-"]
@include omega("#{$i}n")

&:nth-child(#{$i}n+1)
clear: left


// Thoughtbot doesn't want to add a gutterless display type for
// span columns so we'll use this mixin for now. This will create
Expand Down
19 changes: 6 additions & 13 deletions app/assets/stylesheets/manhattan/_variables.sass
Original file line number Diff line number Diff line change
@@ -1,37 +1,30 @@
// Grid system
// --------------------------------------------------
// Number of columns in the grid system
$grids-columns: 12
// Padding, to be divided by two and applied to the left and right of all columns
$gutter: golden-ratio(1em, 1)

$max-width: 1200px

$col-padding: 10px
$col-padding: 0 !default

// Turn responsive on or off
$responsive: true
$responsive: true !default

// Responsive Breakpoints
// ------------------------------------------------------
$screen-xs: 480px
$screen-xs: 480px !default
$screen-xs-min: $screen-xs
$screen-phone: $screen-xs-min

// Small screen / tablet
$screen-sm: 768px
$screen-sm: 768px !default
$screen-sm-min: $screen-sm
$screen-tablet: $screen-sm-min

// Medium screen / desktop
$screen-md: 992px
$screen-md: 992px !default
$screen-md-min: $screen-md
$screen-desktop: $screen-md-min

// Large screen / wide desktop
$screen-lg: 1200px
$screen-lg: 1200px !default
$screen-lg-min: $screen-lg
$screen-lg-desktop: $screen-lg-min
$max-width: $screen-lg
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"kohactive <[email protected]>"
],
"description": "A powerful, mobile-first responsive framework built on Bourbon Neat.",
"version": "0.5.0",
"version": "0.5.1",
"main": "",
"moduleType": [],
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion lib/manhattan/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Manhattan
VERSION = "0.5.0"
VERSION = "0.5.1"
end

0 comments on commit 5f868a2

Please sign in to comment.