@hazae41/labase 1.0.11 → 1.0.12

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@hazae41/labase",
4
- "version": "1.0.11",
4
+ "version": "1.0.12",
5
5
  "description": "The Tailwind framework for monochrome apps",
6
6
  "homepage": "https://github.com/hazae41/labase",
7
7
  "repository": "github:hazae41/labase",
@@ -78,22 +78,6 @@
78
78
  }
79
79
  }
80
80
 
81
- @keyframes -scale-xywh-in {
82
- from {
83
- opacity: 0%;
84
- transform: scale(0%);
85
- translate: calc(-100vw + var(--x) + (0.5 * var(--w))) calc(var(--y) - (0.5 * var(--h)));
86
- }
87
- }
88
-
89
- @keyframes -scale-xywh-out {
90
- to {
91
- opacity: 0%;
92
- transform: scale(0%);
93
- translate: calc(-100vw + var(--x) + (0.5 * var(--w))) calc(var(--y) - (0.5 * var(--h)));
94
- }
95
- }
96
-
97
81
  @keyframes vibrate-loop {
98
82
  from {
99
83
  transform: rotate(-1deg);
@@ -159,14 +143,6 @@
159
143
  animation: scale-xywh-out 300ms ease-in;
160
144
  }
161
145
 
162
- @utility -animate-scale-xywh-in {
163
- animation: -scale-xywh-in 300ms ease-out;
164
- }
165
-
166
- @utility -animate-scale-xywh-out {
167
- animation: -scale-xywh-out 300ms ease-in;
168
- }
169
-
170
146
  @utility animate-vibrate-loop {
171
147
  animation: vibrate-loop 125ms ease-in-out infinite alternate;
172
148
  }