]> BookStack Code Mirror - bookstack/commitdiff
Fixed 404 card header fonts
authorDan Brown <redacted>
Tue, 7 May 2019 21:10:54 +0000 (22:10 +0100)
committerDan Brown <redacted>
Tue, 7 May 2019 21:10:54 +0000 (22:10 +0100)
Fixes #1427

resources/views/errors/404.blade.php

index e13e1fce9e09ebf51cd0e392da100aafbdca849d..228c51520e7d92c47a94cf1ef5bbebd3fb1af054 100644 (file)
@@ -20,7 +20,7 @@
         <div class="grid third gap-xxl">
             <div>
                 <div class="card mb-xl">
-                    <h3>{{ trans('entities.pages_popular') }}</h3>
+                    <h3 class="card-title">{{ trans('entities.pages_popular') }}</h3>
                     <div class="px-m">
                         @include('partials.entity-list', ['entities' => Views::getPopular(10, 0, 'page'), 'style' => 'compact'])
                     </div>
@@ -28,7 +28,7 @@
             </div>
             <div>
                 <div class="card mb-xl">
-                    <h3>{{ trans('entities.books_popular') }}</h3>
+                    <h3 class="card-title">{{ trans('entities.books_popular') }}</h3>
                     <div class="px-m">
                         @include('partials.entity-list', ['entities' => Views::getPopular(10, 0, 'book'), 'style' => 'compact'])
                     </div>
@@ -36,7 +36,7 @@
             </div>
             <div>
                 <div class="card mb-xl">
-                    <h3>{{ trans('entities.chapters_popular') }}</h3>
+                    <h3 class="card-title">{{ trans('entities.chapters_popular') }}</h3>
                     <div class="px-m">
                         @include('partials.entity-list', ['entities' => Views::getPopular(10, 0, 'chapter'), 'style' => 'compact'])
                     </div>