new header

This commit is contained in:
HolgerHatGarKeineNode
2023-02-25 23:56:07 +01:00
parent 86e1ed6007
commit f0311f8230
17 changed files with 1596 additions and 296 deletions

View File

@@ -79,6 +79,10 @@
background-color: #F7931A !important;
}
.leaflet-pane {
z-index: 0 !important;
}
[x-cloak] {
display: none !important;
}
@@ -94,17 +98,6 @@
<livewire:laravel-echo/>
<x-jet-banner/>
<div class="min-h-screen">
@auth
@livewire('navigation-menu')
@endauth
<!-- Page Heading -->
@if (isset($header))
<header class="bg-white shadow">
<div class="max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8">
{{ $header }}
</div>
</header>
@endif
<!-- Page Content -->
<main>
{{ $slot }}

View File

@@ -77,19 +77,34 @@
background-color: #F7931A !important;
}
.leaflet-pane {
z-index: 0 !important;
}
[x-cloak] {
display: none !important;
}
</style>
</head>
<body class="font-sans antialiased bg-21gray dark">
<x-notifications z-index="z-[99999]" blur="md" align="center"/>
<x-dialog z-index="z-[99999]" blur="md" align="center" />
@if(auth()->user())
{{-- HIGHSCORE-CHAT --}}
<livewire:chat.highscore-chat/>
@endif
<livewire:laravel-echo/>
<x-notifications z-index="z-50" blur="md" align="center"/>
<x-dialog z-index="z-50" blur="md" align="center" />
{{ $slot }}
<x-jet-banner/>
<div class="min-h-screen">
<!-- Page Content -->
<main>
{{ $slot }}
</main>
</div>
@stack('modals')
@livewireScripts
<!-- ProductLift SDK - Include it only once -->
<script defer src="https://bitcoin.productlift.dev/widgets_sdk"></script>
<script src="https://cdn.jsdelivr.net/npm/easymde/dist/easymde.min.js"></script>
</body>
</html>