@edgedev/create-edge-app 1.1.8 → 1.1.10
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 +3 -3
- package/pages/app/login.vue +2 -2
- package/pages/app/signup.vue +1 -1
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@edgedev/create-edge-app",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.10",
|
|
4
4
|
"description": "Create Edge Starter App",
|
|
5
5
|
"bin": {
|
|
6
6
|
"create-edge-app": "./bin/cli.js"
|
|
7
7
|
},
|
|
8
8
|
"scripts": {
|
|
9
9
|
"build": "nuxt build",
|
|
10
|
-
"dev": "nuxt dev --host --port=3000",
|
|
11
|
-
"emulator": "nuxt dev --dotenv .env.dev --host --port=3000",
|
|
10
|
+
"dev": "rm -rf .nuxt && nuxt dev --host --port=3000",
|
|
11
|
+
"emulator": "rm -rf .nuxt && nuxt dev --dotenv .env.dev --host --port=3000",
|
|
12
12
|
"build-emulator": "nuxt generate --dotenv .env.dev",
|
|
13
13
|
"generate": "nuxt generate",
|
|
14
14
|
"preview": "nuxt preview",
|
package/pages/app/login.vue
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
</script>
|
|
3
3
|
|
|
4
4
|
<template>
|
|
5
|
-
<div class="flex
|
|
6
|
-
<edge-auth type="login" class="p-8 mx-auto max-w-lg w-full
|
|
5
|
+
<div class="flex items-center justify-center min-h-screen">
|
|
6
|
+
<edge-auth type="login" class="p-8 mx-auto max-w-lg w-full max-h-[800px] overflow-y-auto">
|
|
7
7
|
<div class="grid gap-2 text-center">
|
|
8
8
|
<h1 class="text-2xl font-bold">
|
|
9
9
|
Login
|
package/pages/app/signup.vue
CHANGED
|
@@ -3,7 +3,7 @@ const config = useRuntimeConfig()
|
|
|
3
3
|
</script>
|
|
4
4
|
|
|
5
5
|
<template>
|
|
6
|
-
<div class="flex
|
|
6
|
+
<div class="flex items-center justify-center min-h-screen">
|
|
7
7
|
<edge-auth type="register" :registration-code="config.public.registrationCode" class="p-8 mx-auto max-w-lg w-full h-full max-h-[760px] overflow-y-auto">
|
|
8
8
|
<div class="grid gap-2 text-center">
|
|
9
9
|
<h1 class="text-2xl font-bold">
|