Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
combine mixins and variables into on partial
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Glovier committed Aug 15, 2014
1 parent 90cc34f commit c213642
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 11 deletions.
5 changes: 0 additions & 5 deletions app/styles/_mixins.scss

This file was deleted.

4 changes: 0 additions & 4 deletions app/styles/_variables.scss

This file was deleted.

24 changes: 24 additions & 0 deletions app/styles/_variables_mixins.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// Variables
// -------------------------------------------/

$green: #00bd9c;
$green_light: #13d8b6;
$navy: #2e4359;
$navy_drk: #253649;

// end variables ------------/


// Mixins
// -------------------------------------------/

@mixin vertically_centered {
position: relative;
top: 50%;
margin-top: -50%;
}

@mixin transition($value) {
transition: $value .2s ease;
}
// end mixins ------------/
3 changes: 1 addition & 2 deletions app/styles/app.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
@import "mixins";
@import "variables";
@import "variables_mixins";
@import "bootstrap";
@import "bootstrap-theme";
@import "typography";
Expand Down

0 comments on commit c213642

Please sign in to comment.