feat: give auth cards a max width so they dont look so giant (#706)

This commit is contained in:
MiniDigger | Martin 2023-04-29 11:13:56 +02:00
parent 84058ec4e5
commit 1d1c4a695b
4 changed files with 3 additions and 6 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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"];