0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-06 06:18:32 -05:00

🐛 Fix drag projects on dahsboard

This commit is contained in:
Eva 2023-07-03 12:50:08 +02:00 committed by Alejandro Alonso
parent a737c125d5
commit 4d4e9703cc
2 changed files with 14 additions and 3 deletions

View file

@ -25,6 +25,8 @@
- Fix files can be opened from multiple urls [Taiga #5310](https://tree.taiga.io/project/penpot/issue/5310) - 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 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 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 ### :arrow_up: Deps updates

View file

@ -466,20 +466,27 @@
.dashboard-templates-section { .dashboard-templates-section {
position: absolute; position: absolute;
display: flex;
flex-direction: column;
justify-content: flex-end;
bottom: 0; bottom: 0;
width: 100%; width: 100%;
height: 285px; height: 228px;
transition: bottom 300ms; transition: bottom 300ms;
pointer-events: none;
&.collapsed { &.collapsed {
bottom: -228px; bottom: -228px;
transition: bottom 300ms; transition: bottom 300ms;
} }
.title { .title {
width: 100%; pointer-events: all;
width: fit-content;
top: -56px;
right: -28px;
text-align: right; text-align: right;
height: 56px; height: 56px;
position: absolute;
button { button {
border: none; border: none;
cursor: pointer; cursor: pointer;
@ -529,6 +536,7 @@
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
pointer-events: all;
svg { svg {
width: 12px; width: 12px;
height: 12px; height: 12px;
@ -550,6 +558,7 @@
} }
.content { .content {
pointer-events: all;
background-color: $color-white; background-color: $color-white;
width: 200%; width: 200%;
height: 229px; height: 229px;