diff --git a/frontend/src/components/home/ProjectsNavigationItem.vue b/frontend/src/components/home/ProjectsNavigationItem.vue
index 4ab91f86f..d660284ea 100644
--- a/frontend/src/components/home/ProjectsNavigationItem.vue
+++ b/frontend/src/components/home/ProjectsNavigationItem.vue
@@ -18,15 +18,6 @@
:class="{ 'project-is-collapsed': !childProjectsOpen }"
/>
-
-
-
@@ -221,7 +221,7 @@ const canToggleFavorite = computed(() => {
opacity: 1;
}
-.list-menu:hover > div > .drag-handle-standalone {
+.list-menu:hover .color-bubble-wrapper > .drag-handle {
opacity: 1;
}
@@ -252,16 +252,15 @@ const canToggleFavorite = computed(() => {
}
}
-.drag-handle-standalone {
- inline-size: 1rem;
- block-size: 1rem;
+.drag-handle {
opacity: 0;
cursor: grab;
transition: opacity $transition;
- z-index: 2;
-
position: absolute;
- inset-inline-start: 2.15rem;
+ inset: 0;
+ display: flex;
+ align-items: center;
+ justify-content: center;
&:active {
cursor: grabbing;
@@ -279,7 +278,7 @@ const canToggleFavorite = computed(() => {
}
@media (pointer: coarse) {
- .drag-handle-standalone {
+ .drag-handle {
display: none !important;
}
}