Skip to content

Commit

Permalink
Change navbar-laravel class for bootstrap classes
Browse files Browse the repository at this point in the history
Bootstrap >=4.1 includes a `shadow-sm` class which looks pretty close to the one in the `navbar-laravel` class https://getbootstrap.com/docs/4.3/utilities/shadows/

You could then remove the `.navbar-laravel` class here:
https://github.com/laravel/laravel/blob/master/resources/sass/app.scss#L10-L13
  • Loading branch information
yuters authored May 5, 2019
1 parent e31d131 commit d9225b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</head>
<body>
<div id="app">
<nav class="navbar navbar-expand-md navbar-light navbar-laravel">
<nav class="navbar navbar-expand-md navbar-light bg-white shadow-sm">
<div class="container">
<a class="navbar-brand" href="{{ url('/') }}">
{{ config('app.name', 'Laravel') }}
Expand Down

0 comments on commit d9225b6

Please sign in to comment.