diff --git a/resources/sass/_header.scss b/resources/sass/_header.scss index c1b6af4c6..4a4c70401 100644 --- a/resources/sass/_header.scss +++ b/resources/sass/_header.scss @@ -2,12 +2,12 @@ * Includes the main navigation header and the faded toolbar. */ -header .grid { +header.grid { grid-template-columns: minmax(max-content, 2fr) 1fr minmax(max-content, 2fr); } @include smaller-than($l) { - header .grid { + header.grid { grid-template-columns: 1fr; grid-row-gap: 0; } diff --git a/resources/views/common/header.blade.php b/resources/views/common/header.blade.php deleted file mode 100644 index 86ad3563d..000000000 --- a/resources/views/common/header.blade.php +++ /dev/null @@ -1,74 +0,0 @@ - diff --git a/resources/views/layouts/base.blade.php b/resources/views/layouts/base.blade.php index f303aff26..f9dbc68b4 100644 --- a/resources/views/layouts/base.blade.php +++ b/resources/views/layouts/base.blade.php @@ -32,8 +32,8 @@ @yield('head') - @include('common.custom-styles') - @include('common.custom-head') + @include('layouts.parts.custom-styles') + @include('layouts.parts.custom-head') @stack('head') @@ -48,15 +48,15 @@ class="@stack('body-class')"> @include('layouts.parts.base-body-start') - @include('common.skip-to-content') - @include('common.notifications') - @include('common.header') + @include('layouts.parts.skip-to-content') + @include('layouts.parts.notifications') + @include('layouts.parts.header')
@yield('content')
- @include('common.footer') + @include('layouts.parts.footer')