diff --git a/src/components/editor/EditorPanel.vue b/src/components/editor/EditorPanel.vue index e209215..26a3f2f 100644 --- a/src/components/editor/EditorPanel.vue +++ b/src/components/editor/EditorPanel.vue @@ -34,8 +34,14 @@ @click="activeTab = ''" title="Fermer le panneau" > - - + + @@ -75,6 +81,7 @@ const activeTab = inject('activeTab'); display: flex; flex-direction: column; z-index: 2; + pointer-events: none; } nav { @@ -84,6 +91,7 @@ nav { display: flex; gap: 0.5rem; z-index: 2; + pointer-events: all; } .close-button { @@ -117,7 +125,7 @@ nav { flex: 1; overflow: hidden; position: relative; - left: calc(var(--panel-w)*-1); + left: calc(var(--panel-w) * -1); padding: 4rem 0; @@ -125,6 +133,7 @@ nav { box-shadow: -5px 0px 12px; transition: left 0.3s var(--curve); + pointer-events: all; } .tab-content.open {