Skip to content

Commit bcdc323

Browse files
authored
Merge pull request #135 from franknystrom15/patch-1
Remove caret and replace `display: none` with `d-none`
2 parents da93505 + ebe7f28 commit bcdc323

File tree

1 file changed

+2
-2
lines changed
  • src/Auth/bootstrap-stubs/layouts

1 file changed

+2
-2
lines changed

Diff for: src/Auth/bootstrap-stubs/layouts/app.stub

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
@else
5252
<li class="nav-item dropdown">
5353
<a id="navbarDropdown" class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" v-pre>
54-
{{ Auth::user()->name }} <span class="caret"></span>
54+
{{ Auth::user()->name }}
5555
</a>
5656

5757
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
@@ -61,7 +61,7 @@
6161
{{ __('Logout') }}
6262
</a>
6363

64-
<form id="logout-form" action="{{ route('logout') }}" method="POST" style="display: none;">
64+
<form id="logout-form" action="{{ route('logout') }}" method="POST" class="d-none">
6565
@csrf
6666
</form>
6767
</div>

0 commit comments

Comments
 (0)