Add breakpoint
This commit is contained in:
parent
c561cfd346
commit
752c3a221b
1
Gemfile
1
Gemfile
|
@ -5,4 +5,5 @@ group :development do
|
||||||
gem "sass-globbing"
|
gem "sass-globbing"
|
||||||
gem "compass"
|
gem "compass"
|
||||||
gem "bootstrap-sass"
|
gem "bootstrap-sass"
|
||||||
|
gem "breakpoint"
|
||||||
end
|
end
|
||||||
|
|
|
@ -7,6 +7,9 @@ GEM
|
||||||
bootstrap-sass (3.3.4.1)
|
bootstrap-sass (3.3.4.1)
|
||||||
autoprefixer-rails (>= 5.0.0.1)
|
autoprefixer-rails (>= 5.0.0.1)
|
||||||
sass (>= 3.2.19)
|
sass (>= 3.2.19)
|
||||||
|
breakpoint (2.5.0)
|
||||||
|
sass (~> 3.3)
|
||||||
|
sassy-maps (< 1.0.0)
|
||||||
chunky_png (1.3.4)
|
chunky_png (1.3.4)
|
||||||
compass (1.0.3)
|
compass (1.0.3)
|
||||||
chunky_png (~> 1.2)
|
chunky_png (~> 1.2)
|
||||||
|
@ -30,12 +33,15 @@ GEM
|
||||||
sass (3.4.18)
|
sass (3.4.18)
|
||||||
sass-globbing (1.1.1)
|
sass-globbing (1.1.1)
|
||||||
sass (>= 3.1)
|
sass (>= 3.1)
|
||||||
|
sassy-maps (0.4.0)
|
||||||
|
sass (~> 3.3)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
bootstrap-sass
|
bootstrap-sass
|
||||||
|
breakpoint
|
||||||
compass
|
compass
|
||||||
sass
|
sass
|
||||||
sass-globbing
|
sass-globbing
|
||||||
|
|
|
@ -16,6 +16,7 @@ javascripts_dir = "source/js"
|
||||||
# Require any additional compass plugins installed on your system.
|
# Require any additional compass plugins installed on your system.
|
||||||
require 'sass-globbing'
|
require 'sass-globbing'
|
||||||
require 'bootstrap-sass'
|
require 'bootstrap-sass'
|
||||||
|
require 'breakpoint'
|
||||||
|
|
||||||
##
|
##
|
||||||
## You probably don't need to edit anything below this.
|
## You probably don't need to edit anything below this.
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
@import 'bootstrap';
|
@import 'bootstrap';
|
||||||
@import 'compass';
|
@import 'compass';
|
||||||
|
@import 'breakpoint';
|
||||||
|
|
||||||
@import "variables/**/*";
|
@import "variables/**/*";
|
||||||
@import "base/**/*";
|
@import "base/**/*";
|
||||||
|
|
Loading…
Reference in a new issue