Fix blinking sidebar on load, and z-index larger than excalidrawings

This commit is contained in:
Ole Eskild Steensen 2022-10-13 16:47:05 +02:00
parent 0758fb9f3d
commit c9f0d72b17
2 changed files with 3 additions and 2 deletions

View File

@ -6,12 +6,12 @@
<div x-show="isDesktop" class="expand-line">
<button style="font-size: 48px; background: transparent;" @click="toggleOpen()">
<i x-show="open" class="fa fa-caret-right"></i>
<i x-show="open" style="display: none;" class="fa fa-caret-right"></i>
<i x-show="!open" class="fa fa-caret-left"></i>
</button>
</div>
<div x-show="open || !isDesktop" class="sidebar-container">
<div x-show="open || !isDesktop" class="sidebar-container" style="display: none;">
{%if dgShowLocalGraph === true%}
<div x-show="isDesktop">

View File

@ -82,6 +82,7 @@ ul.task-list {
padding: 20px;
width: 100%;
overflow-y: auto;
z-index: 3;
}
.backlink-card {