@edgedev/create-edge-app 1.0.56 → 1.0.58
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/assets/css/tailwind.css +2 -2
- package/package.json +1 -1
- package/pages/app/login.vue +2 -2
- package/pages/app/signup.vue +2 -2
package/assets/css/tailwind.css
CHANGED
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
--sidebar-primary-foreground: 0 0% 98%;
|
|
42
42
|
--sidebar-accent: 240 4.8% 95.9%;
|
|
43
43
|
--sidebar-accent-foreground: 240 5.9% 10%;
|
|
44
|
-
--sidebar-border:
|
|
44
|
+
--sidebar-border: transparent;
|
|
45
45
|
--sidebar-ring: 217.2 91.2% 59.8%;
|
|
46
46
|
}
|
|
47
47
|
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
--sidebar-primary-foreground: 0 0% 100%;
|
|
83
83
|
--sidebar-accent: 240 3.7% 15.9%;
|
|
84
84
|
--sidebar-accent-foreground: 240 4.8% 95.9%;
|
|
85
|
-
--sidebar-border:
|
|
85
|
+
--sidebar-border: transparent;
|
|
86
86
|
--sidebar-ring: 217.2 91.2% 59.8%;
|
|
87
87
|
}
|
|
88
88
|
}
|
package/package.json
CHANGED
package/pages/app/login.vue
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
</script>
|
|
3
3
|
|
|
4
4
|
<template>
|
|
5
|
-
<div class="flex w-full h-full align-center items-center
|
|
6
|
-
<edge-auth type="login" class="p-8 mx-auto max-w-lg w-full">
|
|
5
|
+
<div class="flex w-full h-full align-center items-center">
|
|
6
|
+
<edge-auth type="login" class="p-8 mx-auto max-w-lg w-full h-full max-h-[530px] 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,8 +3,8 @@ const config = useRuntimeConfig()
|
|
|
3
3
|
</script>
|
|
4
4
|
|
|
5
5
|
<template>
|
|
6
|
-
<div class="flex w-full h-full align-center
|
|
7
|
-
<edge-auth type="register" :registration-code="config.public.registrationCode" class="p-8 mx-auto max-w-lg w-full">
|
|
6
|
+
<div class="flex w-full h-full align-center items-center">
|
|
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">
|
|
10
10
|
Sign Up
|