Change font colours for username and logout

This commit is contained in:
Stasiek Michalski 2018-06-19 04:05:16 +02:00 committed by GitHub
parent d1947e0987
commit 948892812d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,7 @@
@endif
<div class="row justify-content-center">
<div class="col-md-8 p-sm-3 p-0">
<a class="card font-weight-bold text-center h-100 card-md-rounded-0" href="{{Auth::user()->url()}}">
<a class="card font-weight-bold text-center h-100 card-md-rounded-0 text-dark" href="{{Auth::user()->url()}}">
<div class="card-body">
<img class="img-thumbnail rounded-circle d-inline-block mr-2" src="{{Auth::user()->profile->avatarUrl()}}" width="60">
<h1 class="d-inline-block mb-0">&commat;{{Auth::user()->username}}</h1>
@ -49,7 +49,7 @@
</a>
</div>
<div class="col-md-4 p-sm-3 p-0">
<a class="card text-white font-weight-bold text-center h-100 bg-danger card-md-rounded-0" href="{{ route('logout') }}">
<a class="card text-danger font-weight-bold text-center h-100 card-md-rounded-0" href="{{ route('logout') }}">
<div class="card-body d-flex flex-column">
<h2 class="fas fa-sign-out-alt mt-auto"></h2>
<p class="mb-auto">{{ __('navmenu.logout') }}</p>