Skip to content

Commit 6ff0e82

Browse files
committed
wip
1 parent 161ae68 commit 6ff0e82

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

resources/views/layouts/_partials/_navigation.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
@include('layouts._partials._navigation_desktop')
1212

1313
<button @click="toggle"
14-
class="flex items-center gap-1 md:hidden hover:text-black hover:font-semibold transition focus:outline-none mx-auto">
14+
class="flex items-center gap-1 lg:hidden hover:text-black hover:font-semibold transition focus:outline-none mx-auto">
1515
<span>{{ __('Menu') }}</span>
1616

1717
<div class="transition-transform duration-300 ease-in-out" x-bind:class="icon_rotate">

resources/views/layouts/_partials/_navigation_desktop.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@php use App\Enums\LocaleEnum; @endphp
22

3-
<div class="hidden md:flex justify-between w-full">
3+
<div class="hidden lg:flex justify-between w-full">
44

55
{{-- Left-aligned primary navigation --}}
66
<div class="flex gap-2">

resources/views/layouts/_partials/_navigation_mobile.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@php use App\Enums\LocaleEnum; @endphp
22

33
<div x-show="open" x-transition x-cloak
4-
class="md:hidden mt-4 text-xl space-y-2">
4+
class="lg:hidden mt-4 text-xl space-y-2">
55
<!-- News -->
66
<a @click.stop
77
href="{{ localized_route('start.index') }}"

0 commit comments

Comments
 (0)