dorian-tailwind 0.4.0 → 0.5.0

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5867f5f43e119934aed631e012eead79c09a86138d89fce5dc8a60939018fc33
4
- data.tar.gz: b967149e6ac479687cce8bc4848479438ca02435ddcc91534ab8de3dd309f840
3
+ metadata.gz: d24ad9fe490b2fc0f25551d9d29d1527259671c85660ecafae4b84e53a8d98ba
4
+ data.tar.gz: beba0c6863174b57e9e1e1359c49e3973f79765c8370946890b3487e4457cb5d
5
5
  SHA512:
6
- metadata.gz: 31d1f7ba66edf93f4bb8ed1c734bf622357bc150f69447ea092a8d884843109118c1d7932cb27811eb3ebe97da67180d5429b875a4a6f6279269ff32687e1d3a
7
- data.tar.gz: 8e3eacf5476c78dee1f48365bfc6f4c37f5923837c09dbfca841e263a398d51e3e910987fb8836058c8842a5f44d695990e29af91c1288974bb167a961972430
6
+ metadata.gz: f53dc7f5c6d09c56d9f16f10923aadc43de5110499bf351a92bb532f0d1f431c0792465de0020e784cf4913092c4bb9b87f72d279a88cc23ac34fffe76f79cec
7
+ data.tar.gz: be1847bd8636f909547290416afac676c86d4f31027739a604a37cc1d7f0fc3a0ee284a8a6268062203946012d10ad6467f73e8e770d349008ae2fa412ace71b
@@ -2,7 +2,6 @@
2
2
  @import "dorian-tailwind/align-content";
3
3
  @import "dorian-tailwind/align-items";
4
4
  @import "dorian-tailwind/align-self";
5
- @import "dorian-tailwind/animation";
6
5
  @import "dorian-tailwind/appearance";
7
6
  @import "dorian-tailwind/backdrop-filter";
8
7
  @import "dorian-tailwind/background-attachment";
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dorian-tailwind
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dorian Marié
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-10-29 00:00:00.000000000 Z
11
+ date: 2021-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -37,7 +37,6 @@ files:
37
37
  - app/assets/stylesheets/dorian-tailwind/align-content.css
38
38
  - app/assets/stylesheets/dorian-tailwind/align-items.css
39
39
  - app/assets/stylesheets/dorian-tailwind/align-self.css
40
- - app/assets/stylesheets/dorian-tailwind/animation.css
41
40
  - app/assets/stylesheets/dorian-tailwind/appearance.css
42
41
  - app/assets/stylesheets/dorian-tailwind/backdrop-filter.css
43
42
  - app/assets/stylesheets/dorian-tailwind/background-attachment.css
@@ -147,7 +146,8 @@ files:
147
146
  homepage: https://github.com/dorianmariefr/tailwind
148
147
  licenses:
149
148
  - MIT
150
- metadata: {}
149
+ metadata:
150
+ rubygems_mfa_required: 'true'
151
151
  post_install_message:
152
152
  rdoc_options: []
153
153
  require_paths:
@@ -1,58 +0,0 @@
1
- .animate-none {
2
- animation: none;
3
- }
4
-
5
- .animate-spin {
6
- animation: spin 1s linear infinite;
7
-
8
- @keyframes spin {
9
- from {
10
- transform: rotate(0deg);
11
- }
12
- to {
13
- transform: rotate(360deg);
14
- }
15
- }
16
- }
17
-
18
- .animate-ping {
19
- animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
20
-
21
- @keyframes ping {
22
- 75%,
23
- 100% {
24
- transform: scale(2);
25
- opacity: 0;
26
- }
27
- }
28
- }
29
-
30
- .animate-pulse {
31
- animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
32
-
33
- @keyframes pulse {
34
- 0%,
35
- 100% {
36
- opacity: 1;
37
- }
38
- 50% {
39
- opacity: 0.5;
40
- }
41
- }
42
- }
43
-
44
- .animate-bounce {
45
- animation: bounce 1s infinite;
46
-
47
- @keyframes bounce {
48
- 0%,
49
- 100% {
50
- transform: translateY(-25%);
51
- animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
52
- }
53
- 50% {
54
- transform: translateY(0);
55
- animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
56
- }
57
- }
58
- }