Skip to content

Commit 9dc7408

Browse files
committed
Make sure, that the scrollbar is not overlapping with the year numbers
1 parent 293b2da commit 9dc7408

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

resources/views/components/year-nav.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@props(['year', 'years', 'location'])
22

3-
<div id="year_nav" class="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight">
3+
<div id="year_nav" class="font-semibold text-xl text-gray-800 dark:text-gray-200 leading-tight py-3 md:py-4">
44
<ul>
55
@foreach ($years as $yearN)
66
<li><a @class(['active'=> $year == $yearN]) href="{{ route($location.'.year', ['year' => $yearN])

resources/views/layouts/app.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<!-- Page Heading -->
2626
@if (isset($header))
2727
<header class="bg-white dark:bg-gray-800 shadow print:hidden">
28-
<div class="max-w-7xl mx-auto py-5 px-4 sm:px-6 lg:px-8">
28+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
2929
{{ $header }}
3030
</div>
3131
</header>

0 commit comments

Comments
 (0)