valaxy 0.19.3 → 0.19.5
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/client/components/ValaxyApp.vue +8 -0
- package/client/components/ValaxyDecrypt.vue +2 -1
- package/client/styles/mixins/variable.scss +0 -4
- package/client/styles/palette.scss +6 -3
- package/dist/{chunk-HR5LED6E.cjs → chunk-G2FVTQKO.cjs} +43 -43
- package/dist/{chunk-YCKEDOLI.mjs → chunk-LBOPLBJ5.mjs} +43 -43
- package/dist/node/cli/index.cjs +1 -1
- package/dist/node/cli/index.mjs +1 -1
- package/dist/node/index.cjs +1 -1
- package/dist/node/index.d.cts +22 -0
- package/dist/node/index.d.ts +22 -0
- package/dist/node/index.mjs +1 -1
- package/dist/types/index.cjs +1 -1
- package/dist/types/index.mjs +1 -1
- package/package.json +12 -13
- /package/dist/{chunk-GYSOLAXM.mjs → chunk-FMBSVCYZ.mjs} +0 -0
- /package/dist/{chunk-AFNVTV2C.cjs → chunk-ZBSS4PFL.cjs} +0 -0
|
@@ -52,6 +52,14 @@ useHead({
|
|
|
52
52
|
host: siteConfig.value.url,
|
|
53
53
|
},
|
|
54
54
|
},
|
|
55
|
+
|
|
56
|
+
script: [
|
|
57
|
+
{
|
|
58
|
+
id: 'check-mac-os',
|
|
59
|
+
innerHTML: `document.documentElement.classList.toggle('mac', /Mac|iPhone|iPod|iPad/i.test(navigator.platform))`,
|
|
60
|
+
async: true,
|
|
61
|
+
},
|
|
62
|
+
],
|
|
55
63
|
})
|
|
56
64
|
|
|
57
65
|
// seo
|
|
@@ -74,7 +74,8 @@ onMounted(() => {
|
|
|
74
74
|
<input
|
|
75
75
|
v-model="password"
|
|
76
76
|
w-full
|
|
77
|
-
border
|
|
77
|
+
border="~ solid dark:dark-100"
|
|
78
|
+
pl-5 pr-11 py-3 rounded-full hover:shadow transition
|
|
78
79
|
type="password" placeholder="Enter password"
|
|
79
80
|
:class="hasError && 'border-red'"
|
|
80
81
|
@input="hasError = false"
|
|
@@ -31,11 +31,14 @@ $colors: map.merge(
|
|
|
31
31
|
$colors
|
|
32
32
|
);
|
|
33
33
|
$c-primary: map.get($colors, "primary") !default;
|
|
34
|
+
|
|
35
|
+
// https://sass-lang.com/documentation/modules/color/
|
|
36
|
+
// The lighten() function increases lightness by a fixed amount, which is often not the desired effect. To make a color a certain percentage lighter than it was before, use scale() instead.
|
|
34
37
|
$colors: map.merge(
|
|
35
38
|
(
|
|
36
|
-
"primary-light": color.
|
|
37
|
-
"primary-lighter": color.
|
|
38
|
-
"primary-dark": color.
|
|
39
|
+
"primary-light": color.scale($c-primary, $lightness: 10%),
|
|
40
|
+
"primary-lighter": color.scale($c-primary, $lightness: 20%),
|
|
41
|
+
"primary-dark": color.scale($c-primary, $lightness: -5%),
|
|
39
42
|
),
|
|
40
43
|
$colors
|
|
41
44
|
);
|