diff --git a/CHANGES.md b/CHANGES.md index ad3a2f569..5004cfe72 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -25,6 +25,8 @@ - Fix files can be opened from multiple urls [Taiga #5310](https://tree.taiga.io/project/penpot/issue/5310) - Fix asset color item was created from the selected layer [Taiga #5180](https://tree.taiga.io/project/penpot/issue/5180) - Fix unpublish more than one library at the same time [Taiga #5532](https://tree.taiga.io/project/penpot/issue/5532) +- Fix drag projects on dahsboard [Taiga #5531](https://tree.taiga.io/project/penpot/issue/5531) + ### :arrow_up: Deps updates diff --git a/frontend/resources/styles/main/partials/dashboard.scss b/frontend/resources/styles/main/partials/dashboard.scss index 5efa8efb3..f48e89e57 100644 --- a/frontend/resources/styles/main/partials/dashboard.scss +++ b/frontend/resources/styles/main/partials/dashboard.scss @@ -466,20 +466,27 @@ .dashboard-templates-section { position: absolute; + display: flex; + flex-direction: column; + justify-content: flex-end; bottom: 0; width: 100%; - height: 285px; + height: 228px; transition: bottom 300ms; - + pointer-events: none; &.collapsed { bottom: -228px; transition: bottom 300ms; } .title { - width: 100%; + pointer-events: all; + width: fit-content; + top: -56px; + right: -28px; text-align: right; height: 56px; + position: absolute; button { border: none; cursor: pointer; @@ -529,6 +536,7 @@ display: flex; align-items: center; justify-content: center; + pointer-events: all; svg { width: 12px; height: 12px; @@ -550,6 +558,7 @@ } .content { + pointer-events: all; background-color: $color-white; width: 200%; height: 229px;