Merge pull request #319 from rharriso/master

allow default sass values to be overridden
This commit is contained in:
Pavel Reznikov 2016-02-10 19:01:20 -08:00
commit 928d9d3679
2 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
$gridstack-columns: 12;
$gridstack-columns: 12 !default;
@mixin grid-stack-items($gridstack-columns) {
.grid-stack.grid-stack-#{$gridstack-columns} {

View file

@ -1,7 +1,7 @@
$gridstack-columns: 12;
$horizontal_padding: 20px;
$vertical_padding: 20px;
$animation_speed: .3s;
$gridstack-columns: 12 !default;
$horizontal_padding: 20px !default;
$vertical_padding: 20px !default;
$animation_speed: .3s !default;
@mixin vendor($property, $value...){
-webkit-#{$property}:$value;