free-framework 4.8.3 → 4.8.4
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
|
@@ -38,11 +38,11 @@ body {
|
|
|
38
38
|
}
|
|
39
39
|
|
|
40
40
|
.btn-outline {
|
|
41
|
-
@apply px-6 py-2.5 rounded-lg border border-
|
|
41
|
+
@apply px-6 py-2.5 rounded-lg border border-zinc-800 font-semibold text-zinc-300 transition-all hover:bg-zinc-900 hover:text-white;
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
.card-pro {
|
|
45
|
-
@apply p-8 rounded-2xl border border-
|
|
45
|
+
@apply p-8 rounded-2xl border border-zinc-800 bg-[#09090b]/50 backdrop-blur-sm transition-all duration-300 hover:border-zinc-700 hover:bg-[#09090b];
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
.hero-title {
|
|
@@ -54,9 +54,13 @@ body {
|
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
.badge-pro {
|
|
57
|
-
@apply px-2.5 py-1 rounded-full border border-
|
|
57
|
+
@apply px-2.5 py-1 rounded-full border border-zinc-800 bg-zinc-900/50 text-[10px] font-bold tracking-tighter uppercase text-zinc-400;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
60
|
pre {
|
|
61
|
-
@apply bg-zinc-950 border border-
|
|
61
|
+
@apply bg-zinc-950 border border-zinc-800 rounded-xl p-6 font-mono text-sm overflow-x-auto text-zinc-300;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
code {
|
|
65
|
+
@apply font-mono;
|
|
62
66
|
}
|
|
@@ -2,18 +2,20 @@
|
|
|
2
2
|
module.exports = {
|
|
3
3
|
content: [
|
|
4
4
|
"./app/**/*.free",
|
|
5
|
-
"./views/**/*.
|
|
6
|
-
"./
|
|
5
|
+
"./resources/views/**/*.free",
|
|
6
|
+
"./routes/**/*.free",
|
|
7
|
+
"../resources/views/debug.html"
|
|
7
8
|
],
|
|
8
9
|
theme: {
|
|
9
10
|
extend: {
|
|
10
11
|
colors: {
|
|
11
|
-
primary: '#
|
|
12
|
-
secondary: '#
|
|
13
|
-
dark: '#
|
|
12
|
+
primary: '#fff',
|
|
13
|
+
secondary: '#a1a1aa',
|
|
14
|
+
dark: '#000',
|
|
15
|
+
border: '#27272a',
|
|
14
16
|
},
|
|
15
17
|
fontFamily: {
|
|
16
|
-
sans: ['
|
|
18
|
+
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
17
19
|
},
|
|
18
20
|
},
|
|
19
21
|
},
|