stitch 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,3 @@
1
1
  module Stitch
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -0,0 +1,2 @@
1
+ @import 'stitch/patterns';
2
+ @import 'stitch/reset';
@@ -3,13 +3,16 @@
3
3
  */
4
4
 
5
5
  @mixin sans-serif($prepend:false) {
6
- font-family: join($prepend,"Helvetica Neue", Helvetica, Arial, sans-serif);
6
+ $list: "Helvetica Neue", Helvetica, Arial, sans-serif;
7
+ font-family: join($prepend,$list,comma);
7
8
  }
8
9
 
9
10
  @mixin serif($prepend:false) {
10
- font-family: join($prepend,"Georgia", Times New Roman, Times, sans-serif);
11
+ $list: "Georgia", Times New Roman, Times, sans-serif;
12
+ font-family: join($prepend,$list,comma);
11
13
  }
12
14
 
13
15
  @mixin monospace($prepend:false) {
14
- font-family: join($prepend,"Monaco", Courier New, monospace);
16
+ $list: "Monaco", Courier New, monospace;
17
+ font-family: join($prepend,$list,comma);
15
18
  }
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stitch
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Anthony Short
@@ -49,6 +49,7 @@ files:
49
49
  - lib/stitch.rb
50
50
  - lib/stitch/version.rb
51
51
  - stitch.gemspec
52
+ - stylesheets/_stitch.scss
52
53
  - stylesheets/stitch/_patterns.scss
53
54
  - stylesheets/stitch/_reset.scss
54
55
  - stylesheets/stitch/_utilities.scss