File tree Expand file tree Collapse file tree 2 files changed +118
-65
lines changed
examples/waspello/src/cards Expand file tree Collapse file tree 2 files changed +118
-65
lines changed Original file line number Diff line number Diff line change @@ -233,6 +233,16 @@ button.open-add-list {
233
233
234
234
background-color : # ebecf0 ;
235
235
border-radius : 3px ;
236
+
237
+ transition : transform 200ms ease-in-out;
238
+ }
239
+
240
+ .list--dragging {
241
+ transform : rotate (2deg );
242
+ }
243
+
244
+ .list--drop-animating {
245
+ transform : rotate (0deg );
236
246
}
237
247
238
248
.list-header {
@@ -418,6 +428,15 @@ textarea.card-composer-textarea {
418
428
margin-bottom : 8px ;
419
429
padding : 6px 8px 2px ;
420
430
box-shadow : 0 1px 0 rgb (9 30 66 / 25% );
431
+ transition : transform 200ms ease-in-out;
432
+ }
433
+
434
+ .list-card--dragging {
435
+ transform : rotate (4deg );
436
+ }
437
+
438
+ .list-card--drop-animating {
439
+ transform : rotate (0deg );
421
440
}
422
441
423
442
.list-card-title {
You can’t perform that action at this time.
0 commit comments