codelation_assets 0.3.6 → 0.3.7
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 42b54710f6697e34ee8843b8cd5596b8c08cd6f5
|
4
|
+
data.tar.gz: 95a9e4234a5d5f17b9b2d3d8739b5cec82b1af06
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d36fdafdf80f6cd358a9f4c5befbc342a4ac6fe6839e24f1f4b17e8870bc1f9041f82a51e5edf11974a914fb29c2722e8a94f4995b88247d7194dc207cd16e65
|
7
|
+
data.tar.gz: bde9038589488372e47bd04145358089bd9f27c6212b17d94a6a2aa636ae01fd29d4382b12c0551be8a9e29704be976da633ea7ef65e4aa24919eb637d6c9e86
|
@@ -0,0 +1,13 @@
|
|
1
|
+
$max-width: 1024px !default;
|
2
|
+
|
3
|
+
// Sets the max width of a container and centers it by setting margin-left and
|
4
|
+
// margin-right to auto. The max width can be overridden by defining $max-width.
|
5
|
+
// A left and right padding of 12px is added by default.
|
6
|
+
@mixin outer-container($padding: 12px) {
|
7
|
+
display: block;
|
8
|
+
margin-left: auto;
|
9
|
+
margin-right: auto;
|
10
|
+
max-width: $max-width;
|
11
|
+
padding-left: $padding;
|
12
|
+
padding-right: $padding;
|
13
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: codelation_assets
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Pattison
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-04-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -154,6 +154,7 @@ files:
|
|
154
154
|
- app/assets/stylesheets/codelation/mixins/has_cards.scss
|
155
155
|
- app/assets/stylesheets/codelation/mixins/has_columns.scss
|
156
156
|
- app/assets/stylesheets/codelation/mixins/has_grid.scss
|
157
|
+
- app/assets/stylesheets/codelation/mixins/outer_container.scss
|
157
158
|
- lib/codelation_assets.rb
|
158
159
|
- lib/codelation_assets/version.rb
|
159
160
|
- lib/tasks/compile.rake
|