mirror of
https://github.com/HangarMC/Hangar.git
synced 2025-03-07 15:31:00 +08:00
feat: give auth cards a max width so they dont look so giant (#706)
This commit is contained in:
parent
84058ec4e5
commit
1d1c4a695b
@ -132,7 +132,7 @@ useHead(useSeo("Login", null, route, null));
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Card>
|
||||
<Card class="w-xl mx-auto max-w-full">
|
||||
<template #header>{{ privileged ? "Sudo" : "Login" }}</template>
|
||||
|
||||
<div v-if="privileged" class="mb-2">Please authenticate again to do this action</div>
|
||||
|
@ -59,7 +59,7 @@ useHead(useSeo("Reset your password", null, route, null));
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Card>
|
||||
<Card class="w-xl mx-auto max-w-full">
|
||||
<template #header> Reset your password </template>
|
||||
<form v-if="!codeSend" class="flex flex-col gap-2">
|
||||
<p>Enter your email address here to receive a verification code to reset your password.</p>
|
||||
|
@ -53,7 +53,7 @@ useHead(useSeo("Signup", null, route, null));
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Card>
|
||||
<Card class="w-xl mx-auto max-w-full">
|
||||
<template #header>
|
||||
<h1>Sign up</h1>
|
||||
</template>
|
||||
|
3
frontend/src/types/generated/icons.d.ts
vendored
3
frontend/src/types/generated/icons.d.ts
vendored
@ -48,14 +48,11 @@ declare module "@vue/runtime-core" {
|
||||
IconMdiEarth: typeof import("~icons/mdi/earth")["default"];
|
||||
IconMdiEye: typeof import("~icons/mdi/eye")["default"];
|
||||
IconMdiEyeOff: typeof import("~icons/mdi/eye-off")["default"];
|
||||
IconMdiFeather: typeof import("~icons/mdi/feather")["default"];
|
||||
IconMdiFileDocument: typeof import("~icons/mdi/file-document")["default"];
|
||||
IconMdiFlag: typeof import("~icons/mdi/flag")["default"];
|
||||
IconMdiFolderPlusOutline: typeof import("~icons/mdi/folder-plus-outline")["default"];
|
||||
IconMdiFormatListNumbered: typeof import("~icons/mdi/format-list-numbered")["default"];
|
||||
IconMdiGamepadRoundLeft: typeof import("~icons/mdi/gamepad-round-left")["default"];
|
||||
IconMdiGavel: typeof import("~icons/mdi/gavel")["default"];
|
||||
IconMdiHelp: typeof import("~icons/mdi/help")["default"];
|
||||
IconMdiHelpCircleOutline: typeof import("~icons/mdi/help-circle-outline")["default"];
|
||||
IconMdiHome: typeof import("~icons/mdi/home")["default"];
|
||||
IconMdiHorseVariant: typeof import("~icons/mdi/horse-variant")["default"];
|
||||
|
Loading…
Reference in New Issue
Block a user