Skip to content

Commit

Permalink
Typo correction.
Browse files Browse the repository at this point in the history
  • Loading branch information
burlesona committed Mar 3, 2012
1 parent a5877c4 commit 0b988ba
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
@@ -1,4 +1,7 @@
Changelog: Changelog:
0.4.2:
- Typo correction... pushed 0.4.1 too soon!

0.4.1: 0.4.1:
- Changed Typography module as follows: - Changed Typography module as follows:
> Created mixins for headings instead of definitions. > Created mixins for headings instead of definitions.
Expand Down
2 changes: 1 addition & 1 deletion jetpack-rails.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = "jetpack-rails" s.name = "jetpack-rails"
s.version = '0.4.1' s.version = '0.4.2'
s.authors = ["Andrew Burleson"] s.authors = ["Andrew Burleson"]
s.email = 'andrew@eighty-b.com' s.email = 'andrew@eighty-b.com'
s.summary = "A sweet fractional grid system plus an awesome bootstrap mashup, optimized for the asset pipeline." s.summary = "A sweet fractional grid system plus an awesome bootstrap mashup, optimized for the asset pipeline."
Expand Down
14 changes: 7 additions & 7 deletions vendor/assets/stylesheets/jetpack/typography.css.scss
Expand Up @@ -11,7 +11,7 @@ p {
} }


// HEADING MIXINS // HEADING MIXINS
@mixin header( $level ) { @mixin heading( $level ) {
font-weight: 700; color: $dark2; line-height: $baseline * 2; font-weight: 700; color: $dark2; line-height: $baseline * 2;
small { color: $light2; } small { color: $light2; }
@if $level == 1 { @if $level == 1 {
Expand All @@ -34,12 +34,12 @@ p {
} }


// HEADING DEFINITIONS // HEADING DEFINITIONS
h1 { @include header(1); } h1 { @include heading(1); }
h2 { @include header(2); } h2 { @include heading(2); }
h3 { @include header(3); } h3 { @include heading(3); }
h4 { @include header(4); } h4 { @include heading(4); }
h5 { @include header(5); } h5 { @include heading(5); }
h6 { @include header(6); } h6 { @include heading(6); }


// LISTS // LISTS
ol { margin: 0 0 $baseline 20px; } ol { margin: 0 0 $baseline 20px; }
Expand Down

0 comments on commit 0b988ba

Please sign in to comment.