earthnut 0.2.0 → 0.2.1
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/customHooks/use-xcn/index.d.ts +14 -0
- package/index.cjs +1 -1
- package/index.d.ts +2 -6
- package/index.mjs +1 -1
- package/package.json +1 -1
- package/styles/common.css +43 -0
- package/styles/common.scss +43 -0
package/styles/common.css
CHANGED
|
@@ -254,10 +254,53 @@ input:-webkit-autofill:active {
|
|
|
254
254
|
transition-duration: 0.01ms !important;
|
|
255
255
|
}
|
|
256
256
|
}
|
|
257
|
+
.en-full-container {
|
|
258
|
+
width: 100%;
|
|
259
|
+
height: 100%;
|
|
260
|
+
}
|
|
261
|
+
|
|
257
262
|
.en-relative {
|
|
258
263
|
position: relative;
|
|
259
264
|
}
|
|
260
265
|
|
|
266
|
+
.en-flex,
|
|
267
|
+
.en-flex-row,
|
|
268
|
+
.en-flex-column,
|
|
269
|
+
.en-flex-row-reverse,
|
|
270
|
+
.en-flex-column-reverse {
|
|
271
|
+
display: flex;
|
|
272
|
+
flex-wrap: nowrap;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
.en-flex,
|
|
276
|
+
.en-flex-row {
|
|
277
|
+
flex-direction: row;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
.en-flex-row-reverse {
|
|
281
|
+
flex-direction: row-reverse;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
.en-flex-column {
|
|
285
|
+
flex-direction: column;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.en-flex-column {
|
|
289
|
+
flex-direction: column-reverse;
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
.en-flex-wrap {
|
|
293
|
+
flex-wrap: wrap;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
.en-flex-nowrap {
|
|
297
|
+
flex-wrap: nowrap;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
.en-flex-warp-reverse {
|
|
301
|
+
flex-wrap: wrap-reverse;
|
|
302
|
+
}
|
|
303
|
+
|
|
261
304
|
.en-center {
|
|
262
305
|
position: absolute;
|
|
263
306
|
left: 50%;
|
package/styles/common.scss
CHANGED
|
@@ -2,10 +2,53 @@
|
|
|
2
2
|
@use "./reset.scss";
|
|
3
3
|
@use "./respond" as rp;
|
|
4
4
|
|
|
5
|
+
.en-full-container {
|
|
6
|
+
width: 100%;
|
|
7
|
+
height: 100%;
|
|
8
|
+
}
|
|
9
|
+
|
|
5
10
|
.en-relative {
|
|
6
11
|
position: relative;
|
|
7
12
|
}
|
|
8
13
|
|
|
14
|
+
.en-flex,
|
|
15
|
+
.en-flex-row,
|
|
16
|
+
.en-flex-column,
|
|
17
|
+
.en-flex-row-reverse,
|
|
18
|
+
.en-flex-column-reverse {
|
|
19
|
+
display: flex;
|
|
20
|
+
flex-wrap: nowrap;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.en-flex,
|
|
24
|
+
.en-flex-row {
|
|
25
|
+
flex-direction: row;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.en-flex-row-reverse {
|
|
29
|
+
flex-direction: row-reverse;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.en-flex-column {
|
|
33
|
+
flex-direction: column;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.en-flex-column {
|
|
37
|
+
flex-direction: column-reverse;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.en-flex-wrap {
|
|
41
|
+
flex-wrap: wrap;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.en-flex-nowrap {
|
|
45
|
+
flex-wrap: nowrap;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.en-flex-warp-reverse {
|
|
49
|
+
flex-wrap: wrap-reverse;
|
|
50
|
+
}
|
|
51
|
+
|
|
9
52
|
.en-center {
|
|
10
53
|
position: absolute;
|
|
11
54
|
left: 50%;
|