diff --git a/open-isle-cli/src/components/BasePopup.vue b/open-isle-cli/src/components/BasePopup.vue index bc473e592..2c8dfee46 100644 --- a/open-isle-cli/src/components/BasePopup.vue +++ b/open-isle-cli/src/components/BasePopup.vue @@ -33,7 +33,7 @@ export default { display: flex; align-items: center; justify-content: center; - z-index: 20; + z-index: 1100; } .popup-overlay { position: absolute; diff --git a/open-isle-cli/src/components/Dropdown.vue b/open-isle-cli/src/components/Dropdown.vue index 97c663559..0cae03bbb 100644 --- a/open-isle-cli/src/components/Dropdown.vue +++ b/open-isle-cli/src/components/Dropdown.vue @@ -336,7 +336,7 @@ export default { right: 0; bottom: 0; background-color: var(--menu-background-color); - z-index: 1001; + z-index: 1300; display: flex; flex-direction: column; } diff --git a/open-isle-cli/src/views/HomePageView.vue b/open-isle-cli/src/views/HomePageView.vue index 4ac6fc6f2..f25185047 100644 --- a/open-isle-cli/src/views/HomePageView.vue +++ b/open-isle-cli/src/views/HomePageView.vue @@ -438,8 +438,7 @@ export default { .topic-container { position: sticky; - top: 0; - z-index: 10; + z-index: 1000; background-color: var(--background-color); display: flex; flex-direction: row; @@ -719,6 +718,10 @@ export default { font-size: 10px; opacity: 0.5; } + + .topic-container { + position: static; + } }