@unizap/unicss 1.1.37 → 1.1.39

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@unizap/unicss",
3
- "version": "1.1.37",
3
+ "version": "1.1.39",
4
4
  "description": "Unicss: Build sleek interfaces straight from your markup. Fast, modern, utility-first CSS framework for rapid UI development.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -0,0 +1,4 @@
1
+ <div class="flex flex-col flex-row items-center justify-center min-h-screen py-2">
2
+ <h1 class="text-4xl font-bold mb-4">Welcome to the Test Page</h1>
3
+ <p class="text-lg text-color-gray-700">This is a simple test page to demonstrate Tailwind CSS integration.</p>
4
+ </div>
@@ -0,0 +1,39 @@
1
+ .flex { display: flex; }
2
+ .flex-col { flex-direction: column; }
3
+ .flex-row { flex-direction: row; }
4
+ .items-center { align-items: center; }
5
+ .justify-center { justify-content: center; }
6
+ .min-h-screen { min-height: 100vh; }
7
+ .py-2 { padding-block: var(--2) }
8
+ .text-4xl { font-size: var(--text-4xl); }
9
+ .font-bold { font-weight: 700; }
10
+ .mb-4 { margin-bottom: var(--4) }
11
+ .text-lg { font-size: var(--text-lg); }
12
+ .text-color-gray-700 { color: var(--color-gray-700) }
13
+
14
+ @keyframes spin {
15
+ to {
16
+ transform: rotate(360deg);
17
+ }
18
+ }
19
+ @keyframes ping {
20
+ 75%, 100% {
21
+ transform: scale(2);
22
+ opacity: 0;
23
+ }
24
+ }
25
+ @keyframes pulse {
26
+ 50% {
27
+ opacity: 0.5;
28
+ }
29
+ }
30
+ @keyframes bounce {
31
+ 0%, 100% {
32
+ transform: translateY(-25%);
33
+ animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
34
+ }
35
+ 50% {
36
+ transform: none;
37
+ animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
38
+ }
39
+ }
Binary file