1
0
Fork 0

resources/views/partials/navigation.blade.php: tweaking flex items-center abit.

This commit is contained in:
Henrik Hautakoski 2021-07-30 13:32:22 +02:00
parent d2dc8d5ea4
commit 14c41b79d3

View file

@ -1,8 +1,8 @@
<!-- Navigation starts -->
<nav class="w-full mx-auto bg-gray-800 border-b border-gray-700 shadow relative z-20">
<div class="max-w-7xl px-4 mx-auto h-16 flex items-center justify-between">
<ul class="flex items-center h-full space-x-2">
<div class="max-w-7xl px-4 mx-auto h-16 flex justify-between">
<ul class="flex items-center space-x-2">
<!-- Logo -->
<!-- <li aria-label="Home" role="img" class="cursor-pointer">
<x-icon name="clock" class="text-indigo-400 w-12"/>
@ -17,7 +17,7 @@
@endcan
</ul>
<div class="flex justify-end text-white space-x-4">
<div class="flex items-center justify-end text-white space-x-4">
@auth
<a href="{{ route('profile.index') }}"><strong>{{ auth()->user()->username }}</strong></a>
<x-form method="DELETE" action="{{ route('auth.logout') }}">