Skip to content

Commit 3719153

Browse files
authored
Fix broken changes that were caused by merge conflicts (#1403)
1 parent 50db168 commit 3719153

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Elastic.Markdown/Slices/Layout/_TableOfContents.cshtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
@inherits RazorSlice<MarkdownLayoutViewModel>
2-
<aside class="sidebar hidden lg:block max-w-65 md:hidden">
3-
<nav id="toc-nav" class="sidebar-nav h-full">
2+
<aside class="sidebar md:block w-full lg:max-w-65 md:order-2 px-6 md:px-10 lg:px-0">
3+
<nav id="toc-nav" class="sidebar-nav lg:h-full flex flex-row-reverse lg:block items-center gap-4">
44
<div class="mt-6">
55
<version-dropdown all-versions-url="@Model.AllVersionsUrl" current-version='@(Model.CurrentVersion)' items='@(new HtmlString(Model.VersionDropdownSerializedModel))' />
66
</div>
7-
<ul class="mt-6">
7+
<ul class="mt-6 hidden md:flex items-center lg:block gap-4">
88
@if (Model.GithubEditUrl is not null)
99
{
1010
<li class="edit-this-page lg:not-first:mt-1">

0 commit comments

Comments
 (0)