8000 Navigations by SRWieZ · Pull Request #46 · NativePHP/nativephp.com · GitHub
[go: up one dir, main page]

Skip to content

Navigations #46

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Sep 15, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Background blur on sticky nav
  • Loading branch information
SRWieZ committed Sep 14, 2024
commit a4dca8cb981263c6b8cfc550ea1fc1e19af12680
5 changes: 5 additions & 0 deletions resources/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
display: none;
}

/* Look cool on safari */
.blur-background {
backdrop-filter: blur(20px);
}

nav a {
@apply no-underline;
}
Expand Down
4 changes: 2 additions & 2 deletions resources/views/components/banner.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="lg:sticky top-0 text-white bg-gray-50 border-b border-gray-100 z-50 dark:bg-gray-800 dark:border-0">
<div class="lg:sticky top-0 blur-background text-white bg-gray-50/85 border-b border-gray-100 z-50 dark:bg-gray-800/85 dark:border-0">

<x-alert />
{{-- <x-alert />--}}
<div class="flex items-center justify-between gap-6 px-6 py-3 mx-auto max-w-screen-xl sm:py-4">
<a
href="/"
Expand Down
0