Skip to content

Commit

Permalink
feat(backend): Migrate database
Browse files Browse the repository at this point in the history
  • Loading branch information
scouillard committed Jan 29, 2020
1 parent de887d0 commit b6603c9
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 3 deletions.
28 changes: 28 additions & 0 deletions public/chililogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions resources/sass/_layout.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// NAVBAR

.navbar {
background-color: black !important;
}
7 changes: 4 additions & 3 deletions resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@

<body>
<div id="app">
<nav class="navbar navbar-expand-md navbar-light bg-white shadow-sm">
<nav class="navbar navbar-expand-md navbar-dark bg-dark shadow-sm">
<div class="container">
<a class="navbar-brand" href="{{ url('/') }}">
My Chili Recipe
<a class="navbar-brand d-flex" href="{{ url('/') }}">
<div style="border-right: 1px solid white;"><img src="chililogo.svg" class="pr-3" style="height:45px;"></div>
<div class="pl-3 pt-2" style="font-weight:600">MY CHILI RECIPE</div>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="{{ __('Toggle navigation') }}">
<span class="navbar-toggler-icon"></span>
Expand Down

0 comments on commit b6603c9

Please sign in to comment.