Code refactoring

Removed extra spaces displayed in the header of the login and registration link.
This commit is contained in:
Statium 2020-03-07 14:43:42 +05:00 committed by Dan Brown
parent f87c3b2660
commit b58110000d
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9

View File

@ -25,7 +25,7 @@
</div>
<div class="text-right">
<nav class="header-links" >
<nav class="header-links">
<div class="links text-center">
@if (hasAppAccess())
<a class="hide-over-l" href="{{ url('/search') }}">@icon('search'){{ trans('common.search') }}</a>
@ -43,9 +43,9 @@
@if(!signedInUser())
@if(setting('registration-enabled') && config('auth.method') === 'standard')
<a href="{{ url('/register') }}">@icon('new-user') {{ trans('auth.sign_up') }}</a>
<a href="{{ url('/register') }}">@icon('new-user'){{ trans('auth.sign_up') }}</a>
@endif
<a href="{{ url('/login') }}">@icon('login') {{ trans('auth.log_in') }}</a>
<a href="{{ url('/login') }}">@icon('login'){{ trans('auth.log_in') }}</a>
@endif
</div>
@if(signedInUser())
@ -77,4 +77,4 @@
</div>
</div>
</header>
</header>