diff options
| author | horus | 2022-01-07 21:35:25 +0100 |
|---|---|---|
| committer | horus | 2022-01-07 21:35:25 +0100 |
| commit | 9e5f4c9242a0ae83607f40d5ebc5a3cd94bdb440 (patch) | |
| tree | 1f1358e30f834055fe672c7c504f2b74059a2124 | |
| parent | 60ac013193aa731cfb1ae29f22945ed883dc0295 (diff) | |
| download | kategorischeraperitif-9e5f4c9242a0ae83607f40d5ebc5a3cd94bdb440.tar.gz | |
small css fixes
| -rw-r--r-- | resources/views/fragments/angebote.blade.php | 4 | ||||
| -rw-r--r-- | resources/views/fragments/cocktails.blade.php | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/resources/views/fragments/angebote.blade.php b/resources/views/fragments/angebote.blade.php index cd3b1be..20627d3 100644 --- a/resources/views/fragments/angebote.blade.php +++ b/resources/views/fragments/angebote.blade.php @@ -7,9 +7,9 @@ <a style="color: inherit;" href="{{ route('angebote_index') }}" title="Suchmaschine für Spirituosenangebote"> @if( Request::route()->getName() == "index") - <h2 class="card-title" style="margin-bottom: 1rem;">Topaktuelle Sonderangebote von Spirituosen</h2> + <h2 id="angebote" class="card-title" style="margin-bottom: 1rem;">Topaktuelle Sonderangebote von Spirituosen</h2> @else - <h1 class="card-title" style="margin-bottom: 1rem;">Topaktuelle Sonderangebote von Spirituosen</h1> + <h1 id="angebote" class="card-title" style="margin-bottom: 1rem;">Topaktuelle Sonderangebote von Spirituosen</h1> @endif </a> <p class="lead my-3"> diff --git a/resources/views/fragments/cocktails.blade.php b/resources/views/fragments/cocktails.blade.php index 3f210bb..4defecf 100644 --- a/resources/views/fragments/cocktails.blade.php +++ b/resources/views/fragments/cocktails.blade.php @@ -1,11 +1,15 @@ <!-- Cocktailsuche --> <header class="page-header"> <div class="card taxonomy-card"> - <div class="col-md-12 px-10" style="padding-left: 0"> - <div class="card-header"> + <div class="col-md-12 px-10" style="padding-left: 0; margin-bottom: 2rem"> + <div class="card-header" style="border-bottom: 0"> <a style="color: inherit;" href="{{ route('cocktail_index') }}" title="Suchmaschine für Cocktails"> +@if( Request::route()->getName() == "index") <h2 id="cocktails" class="card-title">Cocktaildatenbank</h2> +@else + <h1 id="cocktails" class="card-title">Cocktaildatenbank</h1> +@endif </a> </div> <div class="card-block card-body px-3" style="padding-left: 0; padding-right: 0"> |
