Skip to content

Commit 58a89ec

Browse files
committed
Bugfix
#330
1 parent 6bac0a9 commit 58a89ec

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

resources/views/home.blade.php

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -93,17 +93,13 @@ function themeAsset($path){
9393
.reg {
9494
background-color: #0085FF;
9595
border: 1px solid transparent;
96-
}
97-
.reg a {
98-
color: #fff;
96+
color: #fff !important;
9997
}
10098
10199
.log {
102100
background-color: #fefefe;
103101
border: 1px solid #000;
104-
}
105-
.log a {
106-
color: #333;
102+
color: #333 !important;
107103
}
108104
109105
.btns {
@@ -170,14 +166,14 @@ function themeAsset($path){
170166
<div class="sign" style="margin-top: 30px; text-align: right;">
171167
@if (Route::has('login'))
172168
@auth
173-
<div class="fadein btns log"><a href="{{ route('studioIndex') }}" class="underline spacing">Studio</a></div>
169+
<a href="{{ route('studioIndex') }}" class="underline spacing"><div class="fadein btns log">Studio</div></a>
174170
@else
175-
<div class="fadein btns log"><a href="{{ route('login') }}" class="underline spacing">Log in</a></div>
171+
<a href="{{ route('login') }}" class="fadein btns log"><div class="underline spacing">Log in</div></a>
176172

177173
@if (Route::has('register') and $page->register == 'true')
178-
<div class="fadein btns reg"><a href="{{ route('register') }}" class="underline spacing">Register</a></div>
174+
<a href="{{ route('register') }}" class="fadein btns reg"><div class="underline spacing">Register</div></a>
179175
@elseif (env('REGISTER_OVERRIDE') === true)
180-
<div class="fadein btns reg"><a href="{{ route('register') }}" class="underline spacing">Register</a></div>
176+
<a href="{{ route('register') }}" class="fadein btns reg"><div class="underline spacing">Register</div></a>
181177
@endif
182178
@endauth
183179
@endif

0 commit comments

Comments
 (0)