Skip to content

Commit

Permalink
Add Autoprefixer
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Ogle committed Sep 25, 2015
1 parent 9f0d21a commit 07bb558
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 154 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
/.cache
/.sass-cache
/build
Gemfile.lock
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
source "http://rubygems.org"

gem "middleman"
gem "middleman-livereload"
gem "middleman-autoprefixer"
gem "middleman-deploy"
gem "middleman-livereload"
gem "bourbon"
gem "neat"
143 changes: 0 additions & 143 deletions Gemfile.lock

This file was deleted.

11 changes: 6 additions & 5 deletions config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@

activate :views
activate :directory_indexes
activate :autoprefixer

set :relative_links, true
set :css_dir, 'assets/stylesheets'
set :js_dir, 'assets/javascripts'
set :images_dir, 'assets/images'
set :fonts_dir, 'assets/fonts'
set :layout, 'layouts/application'
set :css_dir, "assets/stylesheets"
set :js_dir, "assets/javascripts"
set :images_dir, "assets/images"
set :fonts_dir, "assets/fonts"
set :layout, "layouts/application"

configure :development do
activate :livereload
Expand Down
6 changes: 3 additions & 3 deletions source/assets/stylesheets/_global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ body {
}

.delete-me {
@include align-items(center);
@include display(flex);
@include justify-content(center);
align-items: center;
display: flex;
justify-content: center;
height: 100vh;

.container {
Expand Down
2 changes: 1 addition & 1 deletion source/assets/stylesheets/base/_buttons.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#{$all-button-inputs},
button {
@include appearance(none);
appearance: none;
-webkit-font-smoothing: antialiased;
background-color: $action-color;
border-radius: $base-border-radius;
Expand Down
2 changes: 1 addition & 1 deletion source/assets/stylesheets/base/_forms.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ textarea {
}

input[type="search"] {
@include appearance(none);
appearance: none;
}

input[type="checkbox"],
Expand Down

0 comments on commit 07bb558

Please sign in to comment.