@trackunit/css-tailwind 0.0.180 → 0.0.182
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.
- package/package.json +1 -1
- package/tailwind-base.generated.js +15 -0
package/package.json
CHANGED
|
@@ -995,6 +995,7 @@ var animations = {
|
|
|
995
995
|
"bg-scroll-br": "bgScrollBR 10s ease infinite",
|
|
996
996
|
"modal-fade": "modalFade 0.3s ease-in-out 1 forwards",
|
|
997
997
|
"fade-in-rising": "fadeInRising 0.2s ease-in",
|
|
998
|
+
"pulse-back": "pulseBack 4s infinite",
|
|
998
999
|
},
|
|
999
1000
|
keyframes: {
|
|
1000
1001
|
modalFade: {
|
|
@@ -1056,6 +1057,20 @@ var animations = {
|
|
|
1056
1057
|
transform: "translateY(0)",
|
|
1057
1058
|
},
|
|
1058
1059
|
},
|
|
1060
|
+
pulseBack: {
|
|
1061
|
+
"0%": {
|
|
1062
|
+
transform: "scale(0.95)",
|
|
1063
|
+
"box-shadow": "0 0 0 0 var(--pulse-back-color)",
|
|
1064
|
+
},
|
|
1065
|
+
"70%": {
|
|
1066
|
+
transform: "scale(1)",
|
|
1067
|
+
"box-shadow": "0 0 0 10px rgba(0, 0, 0, 0)",
|
|
1068
|
+
},
|
|
1069
|
+
"100%": {
|
|
1070
|
+
transform: "scale(0.95)",
|
|
1071
|
+
"box-shadow": "0 0 0 0 rgba(0, 0, 0, 0)",
|
|
1072
|
+
},
|
|
1073
|
+
},
|
|
1059
1074
|
},
|
|
1060
1075
|
};
|
|
1061
1076
|
|