Skip to content

Commit 6d4ab32

Browse files
authored
Fix: Adding missing span tags to correct spacing (#104)
* add a missing span tag * add a missing span tag * add a missing span tag
1 parent 59609f2 commit 6d4ab32

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

resources/views/livewire/auth/forgot-password.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function sendPasswordResetLink(): void
4343
</form>
4444

4545
<div class="space-x-1 rtl:space-x-reverse text-center text-sm text-zinc-400">
46-
{{ __('Or, return to') }}
46+
<span>{{ __('Or, return to') }}</span>
4747
<flux:link :href="route('login')" wire:navigate>{{ __('log in') }}</flux:link>
4848
</div>
4949
</div>

resources/views/livewire/auth/login.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ protected function throttleKey(): string
120120

121121
@if (Route::has('register'))
122122
<div class="space-x-1 rtl:space-x-reverse text-center text-sm text-zinc-600 dark:text-zinc-400">
123-
{{ __('Don\'t have an account?') }}
123+
<span>{{ __('Don\'t have an account?') }}</span>
124124
<flux:link :href="route('register')" wire:navigate>{{ __('Sign up') }}</flux:link>
125125
</div>
126126
@endif

resources/views/livewire/auth/register.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function register(): void
9393
</form>
9494

9595
<div class="space-x-1 rtl:space-x-reverse text-center text-sm text-zinc-600 dark:text-zinc-400">
96-
{{ __('Already have an account?') }}
96+
<span>{{ __('Already have an account?') }}</span>
9797
<flux:link :href="route('login')" wire:navigate>{{ __('Log in') }}</flux:link>
9898
</div>
9999
</div>

0 commit comments

Comments
 (0)