|
13 | 13 | <!-- Styles -->
|
14 | 14 | <link href="{{ mix('css/app.css') }}" rel="stylesheet">
|
15 | 15 | </head>
|
16 |
| -<body class="bg-grey-lightest h-screen antialiased"> |
| 16 | +<body class="bg-gray-100 h-screen antialiased leading-none"> |
17 | 17 | <div class="flex flex-col">
|
18 | 18 | @if(Route::has('login'))
|
19 |
| - <div class="absolute pin-t pin-r mt-4 mr-4"> |
| 19 | + <div class="absolute top-0 right-0 mt-4 mr-4"> |
20 | 20 | @auth
|
21 |
| - <a href="{{ url('/home') }}" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase">{{ __('Home') }}</a> |
| 21 | + <a href="{{ url('/home') }}" class="no-underline hover:underline text-sm font-normal text-teal-800 uppercase">{{ __('Home') }}</a> |
22 | 22 | @else
|
23 |
| - <a href="{{ route('login') }}" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase pr-6">{{ __('Login') }}</a> |
| 23 | + <a href="{{ route('login') }}" class="no-underline hover:underline text-sm font-normal text-teal-800 uppercase pr-6">{{ __('Login') }}</a> |
24 | 24 | @if (Route::has('register'))
|
25 |
| - <a href="{{ route('register') }}" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase">{{ __('Register') }}</a> |
| 25 | + <a href="{{ route('register') }}" class="no-underline hover:underline text-sm font-normal text-teal-800 uppercase">{{ __('Register') }}</a> |
26 | 26 | @endif
|
27 | 27 | @endauth
|
28 | 28 | </div>
|
|
31 | 31 | <div class="min-h-screen flex items-center justify-center">
|
32 | 32 | <div class="flex flex-col justify-around h-full">
|
33 | 33 | <div>
|
34 |
| - <h1 class="text-grey-darker text-center font-thin tracking-wide text-5xl mb-6"> |
| 34 | + <h1 class="text-gray-800 text-center font-thin tracking-wider text-5xl mb-6"> |
35 | 35 | {{ config('app.name', 'Laravel') }}
|
36 | 36 | </h1>
|
37 | 37 | <ul class="list-reset">
|
38 | 38 | <li class="inline pr-8">
|
39 |
| - <a href="https://laravel.com/docs" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="Documentation">Documentation</a> |
| 39 | + <a href="https://laravel.com/docs" class="no-underline hover:underline text-sm font-normal text-teal-800 uppercase" title="Documentation">Documentation</a> |
40 | 40 | </li>
|
41 | 41 | <li class="inline pr-8">
|
42 |
| - <a href="https://laracasts.com" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="Laracasts">Laracasts</a> |
| 42 | + <a href="https://laracasts.com" class="no-underline hover:underline text-sm font-normal text-teal-800 uppercase" title="Laracasts">Laracasts</a> |
43 | 43 | </li>
|
44 | 44 | <li class="inline pr-8">
|
45 |
| - <a href="https://laravel-news.com" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="News">News</a> |
| 45 | + <a href="https://laravel-news.com" class="no-underline hover:underline text-sm font-normal text-teal-800 uppercase" title="News">News</a> |
46 | 46 | </li>
|
47 | 47 | <li class="inline pr-8">
|
48 |
| - <a href="https://nova.laravel.com" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="Nova">Nova</a> |
| 48 | + <a href="https://nova.laravel.com" class="no-underline hover:underline text-sm font-normal text-teal-800 uppercase" title="Nova">Nova</a> |
49 | 49 | </li>
|
50 | 50 | <li class="inline pr-8">
|
51 |
| - <a href="https://forge.laravel.com" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="Forge">Forge</a> |
| 51 | + <a href="https://forge.laravel.com" class="no-underline hover:underline text-sm font-normal text-teal-800 uppercase" title="Forge">Forge</a> |
52 | 52 | </li>
|
53 | 53 | <li class="inline pr-8">
|
54 |
| - <a href="https://github.com/laravel/laravel" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="GitHub">GitHub</a> |
| 54 | + <a href="https://github.com/laravel/laravel" class="no-underline hover:underline text-sm font-normal text-teal-800 uppercase" title="GitHub">GitHub</a> |
55 | 55 | </li>
|
56 | 56 | </ul>
|
57 | 57 | </div>
|
|
0 commit comments