tachyonscss-rails 4.9.0 → 4.9.0.1
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4e38150adaaea588f39d101586d3e18f517e5e081adf3d60520f4afd7d38918
|
4
|
+
data.tar.gz: 8cf0d5a31e0f146c0aaee01e128e3824ec06ee0deb7df1eff03d9be90c775079
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 44cb92e32d3a7592fa317b314823c1502b45c504ce0b650fcdcbd2358bac007a9e6db1f15a47cca2051fab81340f9367e37659c942f1c4d8e5c617b46812937a
|
7
|
+
data.tar.gz: 53bbe00b95694b4b5833d93278adf62695b7a4876fff3d929b416949ded12c47566c835238b51a75ce81b2b86fbf934eb6ce23036ad0911ff4d8450fc6d404f9
|
data/README.md
CHANGED
@@ -39,4 +39,9 @@ The most common way to use this is:
|
|
39
39
|
Basically, this gem makes it so you can `@import "tachyons";` and it will build the CSS file from the contents of the
|
40
40
|
[tachyons-sass](https://github.com/tachyons-css/tachyons-sass) module that this gem wraps.
|
41
41
|
|
42
|
+
## Versions
|
42
43
|
|
44
|
+
The version of this gem matches the version of tachyons it bundles, except that it's possible for this gem to bundle
|
45
|
+
an unreleased version of Tachyons. In that case, the gem will use a fourth number, for example `4.9.0.1` would
|
46
|
+
indicate that this is the first release beyond `4.9.0` to include Tachyons code added to its main branch since `4.9.0`
|
47
|
+
was released.
|
@@ -1,4 +1,3 @@
|
|
1
|
-
|
2
1
|
// Converted Variables
|
3
2
|
|
4
3
|
|
@@ -70,8 +69,8 @@
|
|
70
69
|
.w-90 { width: 90%; }
|
71
70
|
.w-100 { width: 100%; }
|
72
71
|
|
73
|
-
.w-third { width: (100% / 3); }
|
74
|
-
.w-two-thirds { width: (100% / 1.5); }
|
72
|
+
.w-third { width: calc(100% / 3); }
|
73
|
+
.w-two-thirds { width: calc(100% / 1.5); }
|
75
74
|
.w-auto { width: auto; }
|
76
75
|
|
77
76
|
@media #{$breakpoint-not-small} {
|
@@ -94,8 +93,8 @@
|
|
94
93
|
.w-80-ns { width: 80%; }
|
95
94
|
.w-90-ns { width: 90%; }
|
96
95
|
.w-100-ns { width: 100%; }
|
97
|
-
.w-third-ns { width: (100% / 3); }
|
98
|
-
.w-two-thirds-ns { width: (100% / 1.5); }
|
96
|
+
.w-third-ns { width: calc(100% / 3); }
|
97
|
+
.w-two-thirds-ns { width: calc(100% / 1.5); }
|
99
98
|
.w-auto-ns { width: auto; }
|
100
99
|
}
|
101
100
|
|
@@ -119,8 +118,8 @@
|
|
119
118
|
.w-80-m { width: 80%; }
|
120
119
|
.w-90-m { width: 90%; }
|
121
120
|
.w-100-m { width: 100%; }
|
122
|
-
.w-third-m { width: (100% / 3); }
|
123
|
-
.w-two-thirds-m { width: (100% / 1.5); }
|
121
|
+
.w-third-m { width: calc(100% / 3); }
|
122
|
+
.w-two-thirds-m { width: calc(100% / 1.5); }
|
124
123
|
.w-auto-m { width: auto; }
|
125
124
|
}
|
126
125
|
|
@@ -144,7 +143,7 @@
|
|
144
143
|
.w-80-l { width: 80%; }
|
145
144
|
.w-90-l { width: 90%; }
|
146
145
|
.w-100-l { width: 100%; }
|
147
|
-
.w-third-l { width: (100% / 3); }
|
148
|
-
.w-two-thirds-l { width: (100% / 1.5); }
|
146
|
+
.w-third-l { width: calc(100% / 3); }
|
147
|
+
.w-two-thirds-l { width: calc(100% / 1.5); }
|
149
148
|
.w-auto-l { width: auto; }
|
150
149
|
}
|
data/lib/tachyonscss-rails.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tachyonscss-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.9.0
|
4
|
+
version: 4.9.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dave Copeland
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-23 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email:
|