Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@using Elastic.Documentation.Configuration.Builder
@inherits RazorSlice<Elastic.Documentation.Site.GlobalLayoutViewModel>
<nav id="secondary-nav" class="bg-grey-10 border-t-1 border-grey-20 font-sans font-semibold text-sm text-ink-light md:text-base">
<nav id="secondary-nav" hx-disable="true" class="bg-grey-10 border-t-1 border-grey-20 font-sans font-semibold text-sm text-ink-light md:text-base">
<div class="max-w-(--max-layout-width) flex mx-auto justify-between items-center p-6">
<div class="flex gap-2 flex-nowrap items-center">
@if (Model.RenderHamburgerIcon)
Expand Down
2 changes: 1 addition & 1 deletion src/Elastic.Markdown/Layout/_LandingPage.cshtml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@inherits RazorSlice<Elastic.Markdown.MarkdownLayoutViewModel>
<div class="w-full text-ink relative text-pretty">
<div hx-disable="true" class="w-full text-ink relative text-pretty">
<div class="w-full absolute top-0 left-0 right-0 htmx-indicator" id="htmx-indicator" role="status">
<div class="h-[2px] w-full overflow-hidden">
<div class="progress w-full h-full bg-pink-70 left-right"></div>
Expand Down
2 changes: 1 addition & 1 deletion src/Elastic.Markdown/Layout/_NotFound.cshtml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@inherits RazorSlice<Elastic.Markdown.MarkdownLayoutViewModel>
<div class="p-12 font-body text-center flex flex-col items-center justify-center">
<div hx-disable="true" class="p-12 font-body text-center flex flex-col items-center justify-center">
<span class="text-4xl font-sans font-semibold">Page not found</span>
<p class="mt-2">The page you are looking for could not be found.</p>
<a href="@Model.Link("/")" class="link my-6">
Expand Down
Loading