Model: Qwen 3.6 35B A3

Prompt: forms for them should be in a container that's white, centerd on screen like forms are right now, just wrapped in white container

Stats:
Context: 98,313 tokens
Time: 17m 47s
This commit is contained in:
Darius Rapalis
2026-04-28 21:51:45 +03:00
parent 6ffefb4aa4
commit 3ed92810c3
6 changed files with 79 additions and 78 deletions

View File

@@ -26,13 +26,13 @@ defineProps<{
<div
v-if="status"
class="mb-2 text-center text-sm font-medium text-green-600"
class="mb-4 text-center text-sm font-medium text-green-600"
>
{{ status }}
</div>
<div class="space-y-5">
<Form v-bind="email.form()" v-slot="{ errors, processing }">
<Form v-bind="email.form()" v-slot="{ errors, processing }">
<div class="grid gap-5">
<div class="grid gap-2">
<Label for="email" class="text-sm font-medium text-[#333]">Email address</Label>
<Input
@@ -47,7 +47,7 @@ defineProps<{
<InputError :message="errors.email" />
</div>
<div class="pt-2">
<div>
<Button
class="w-full h-11 bg-[#03a9f4] hover:bg-[#0298dd] text-base font-medium"
:disabled="processing"
@@ -57,11 +57,11 @@ defineProps<{
<span v-else>Email password reset link</span>
</Button>
</div>
</Form>
<div class="text-center text-sm text-[#607d8b]">
<span>Or, return to</span>
<TextLink :href="login()" class="text-[#03a9f4] hover:text-[#0288d1] decoration-transparent hover:decoration-current underline-offset-4">log in</TextLink>
</div>
</Form>
<div class="text-center text-sm text-[#607d8b] mt-5">
<span>Or, return to</span>
<TextLink :href="login()" class="text-[#03a9f4] hover:text-[#0288d1] decoration-transparent hover:decoration-current underline-offset-4">log in</TextLink>
</div>
</template>