hide the kanban trash bar when it isn't in use

pull/1/head
ansuz 5 years ago
parent caac97df66
commit 3bd7742d20

@ -421,14 +421,21 @@
} }
} }
#kanban-trash { #kanban-trash {
height: 60px; height: 0px;
font-size: 40px; font-size: 0px;
transition: height 400ms, font-size 400ms;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
position: relative; position: relative;
width: 100%; width: 100%;
//pointer-events: none; //pointer-events: none;
&.kanban-trash-active, &.kanban-trash-suggest {
height: 60px;
font-size: 40px;
}
i { i {
position: fixed; position: fixed;
} }

Loading…
Cancel
Save