Skip to content

Commit a3c2e5e

Browse files
committed
Fix linting issue
1 parent a1e0947 commit a3c2e5e

File tree

1 file changed

+12
-9
lines changed

1 file changed

+12
-9
lines changed

eventcatalog/src/layouts/VerticalSideBarLayout.astro

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -344,15 +344,18 @@ const canPageBeEmbedded = isEmbedEnabled();
344344

345345
{
346346
showNestedSideBar && (
347-
<SideNav
348-
id="sidebar"
349-
class="sidebar-transition h-content bg-white border-r border-gray-100 ml-14"
350-
style="width: var(--sidebar-width, 320px);"
351-
/>
352-
<div
353-
id="sidebar-resizer"
354-
class="w-1 cursor-col-resize bg-transparent hover:bg-blue-200"
355-
style="position: relative; z-index: 30;"/>
347+
<div>
348+
<SideNav
349+
id="sidebar"
350+
class="sidebar-transition h-content bg-white border-r border-gray-100 ml-14"
351+
style="width: var(--sidebar-width, 320px);"
352+
/>
353+
<div
354+
id="sidebar-resizer"
355+
class="w-1 cursor-col-resize bg-transparent hover:bg-blue-200"
356+
style="position: relative; z-index: 30;">
357+
</div>
358+
</div>
356359
)
357360
}
358361
</aside>

0 commit comments

Comments
 (0)