feat: Update auth screens (#11108)

# Pull Request Template

## Description

This PR includes style updates for auth screens

## Type of change

- [x] Bug fix (non-breaking change which fixes an issue)


## Checklist:

- [x] My code follows the style guidelines of this project
- [x] I have performed a self-review of my code
- [x] I have commented on my code, particularly in hard-to-understand
areas
- [ ] I have made corresponding changes to the documentation
- [x] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [x] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged and published in downstream
modules
This commit is contained in:
Sivin Varghese
2025-03-19 15:19:32 +05:30
committed by GitHub
parent 4c26fe5d57
commit c89a2cd672
20 changed files with 262 additions and 257 deletions

View File

@@ -33,7 +33,7 @@ export default {
</script>
<template>
<div class="w-full h-full dark:bg-slate-900">
<div class="w-full h-full bg-n-background">
<div v-show="!isLoading" class="flex h-full min-h-screen items-center">
<div
class="flex-1 min-h-[640px] inline-flex items-center h-full justify-center overflow-auto py-6"
@@ -52,15 +52,15 @@ export default {
class="hidden w-auto h-8 dark:block"
/>
<h2
class="mt-6 text-3xl font-medium text-left mb-7 text-slate-900 dark:text-woot-50"
class="mt-6 text-3xl font-medium text-left mb-7 text-n-slate-12"
>
{{ $t('REGISTER.TRY_WOOT') }}
</h2>
</div>
<SignupForm />
<div class="px-1 text-sm text-slate-800 dark:text-woot-50">
<div class="px-1 text-sm text-n-slate-12">
<span>{{ $t('REGISTER.HAVE_AN_ACCOUNT') }}</span>
<router-link class="text-link" to="/app/login">
<router-link class="text-link text-n-brand" to="/app/login">
{{
useInstallationName(
$t('LOGIN.TITLE'),
@@ -79,7 +79,7 @@ export default {
</div>
<div
v-show="isLoading"
class="flex items-center justify-center w-full h-full"
class="flex items-center min-h-screen justify-center w-full h-full"
>
<Spinner color-scheme="primary" size="" />
</div>