@remyyy/create-velox 0.0.15 → 0.0.16
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
|
@@ -22,7 +22,7 @@ function Dashboard() {
|
|
|
22
22
|
</h1>
|
|
23
23
|
<p style={{ color: 'var(--color-text-secondary)', fontSize: '1.1rem', maxWidth: '600px' }}>
|
|
24
24
|
You are running a production-ready template optimized for speed.
|
|
25
|
-
Start editing <code>src/App.
|
|
25
|
+
Start editing <code>src/App.jsx</code> to build your next big idea.
|
|
26
26
|
</p>
|
|
27
27
|
</section>
|
|
28
28
|
|
|
@@ -1,82 +1,75 @@
|
|
|
1
1
|
:root {
|
|
2
|
-
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
3
|
-
line-height: 1.5;
|
|
4
|
-
font-weight: 400;
|
|
2
|
+
--font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
|
|
5
3
|
|
|
6
|
-
color-
|
|
7
|
-
color:
|
|
8
|
-
|
|
4
|
+
--color-bg: #09090b;
|
|
5
|
+
--color-surface: #18181b;
|
|
6
|
+
--color-surface-hover: #27272a;
|
|
7
|
+
--color-border: #27272a;
|
|
9
8
|
|
|
10
|
-
|
|
11
|
-
text-
|
|
12
|
-
|
|
13
|
-
-
|
|
9
|
+
--color-text-primary: #f4f4f5;
|
|
10
|
+
--color-text-secondary: #a1a1aa;
|
|
11
|
+
|
|
12
|
+
--color-primary: #f97316;
|
|
13
|
+
--color-primary-glow: rgba(249, 115, 22, 0.5);
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
* {
|
|
17
|
+
box-sizing: border-box;
|
|
18
|
+
margin: 0;
|
|
19
|
+
padding: 0;
|
|
14
20
|
}
|
|
15
21
|
|
|
16
22
|
body {
|
|
17
23
|
margin: 0;
|
|
18
|
-
display: flex;
|
|
19
|
-
justify-content: center;
|
|
20
|
-
align-items: center;
|
|
21
24
|
min-width: 320px;
|
|
22
25
|
min-height: 100vh;
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
margin: 0 auto;
|
|
31
|
-
display: flex;
|
|
32
|
-
flex-direction: column;
|
|
33
|
-
align-items: center;
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.app-container {
|
|
37
|
-
display: flex;
|
|
38
|
-
flex-direction: column;
|
|
39
|
-
align-items: center;
|
|
40
|
-
justify-content: center;
|
|
41
|
-
width: 100%;
|
|
26
|
+
background-color: var(--color-bg);
|
|
27
|
+
color: var(--color-text-primary);
|
|
28
|
+
font-family: var(--font-family);
|
|
29
|
+
line-height: 1.5;
|
|
30
|
+
font-synthesis: none;
|
|
31
|
+
text-rendering: optimizeLegibility;
|
|
32
|
+
-webkit-font-smoothing: antialiased;
|
|
42
33
|
}
|
|
43
34
|
|
|
44
|
-
|
|
45
|
-
|
|
35
|
+
a {
|
|
36
|
+
font-weight: 500;
|
|
37
|
+
color: var(--color-primary);
|
|
38
|
+
text-decoration: none;
|
|
39
|
+
transition: opacity 0.2s;
|
|
46
40
|
}
|
|
47
41
|
|
|
48
|
-
|
|
49
|
-
|
|
42
|
+
a:hover {
|
|
43
|
+
opacity: 0.8;
|
|
50
44
|
}
|
|
51
45
|
|
|
52
46
|
button {
|
|
53
47
|
border-radius: 8px;
|
|
54
|
-
border: 1px solid
|
|
48
|
+
border: 1px solid var(--color-border);
|
|
55
49
|
padding: 0.6em 1.2em;
|
|
56
50
|
font-size: 1em;
|
|
57
51
|
font-weight: 500;
|
|
58
52
|
font-family: inherit;
|
|
59
|
-
background-color:
|
|
53
|
+
background-color: var(--color-surface);
|
|
54
|
+
color: var(--color-text-primary);
|
|
60
55
|
cursor: pointer;
|
|
61
|
-
transition:
|
|
56
|
+
transition: all 0.25s;
|
|
62
57
|
}
|
|
63
58
|
|
|
64
59
|
button:hover {
|
|
65
|
-
border-color:
|
|
60
|
+
border-color: var(--color-primary);
|
|
61
|
+
background-color: var(--color-surface-hover);
|
|
66
62
|
}
|
|
67
63
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
64
|
+
.layout {
|
|
65
|
+
max-width: 1200px;
|
|
66
|
+
margin: 0 auto;
|
|
67
|
+
padding: 2rem;
|
|
71
68
|
}
|
|
72
69
|
|
|
73
|
-
|
|
74
|
-
:
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
button {
|
|
80
|
-
background-color: #f9f9f9;
|
|
81
|
-
}
|
|
70
|
+
.grid {
|
|
71
|
+
display: grid;
|
|
72
|
+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
73
|
+
gap: 1.5rem;
|
|
74
|
+
margin-top: 2rem;
|
|
82
75
|
}
|