| 1234567891011121314151617181920 |
- $easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
- %transitionForCompactMode {
- // set transition-duration (normal -> compact)
- transition: all 300ms $easeInOutCubic;
- }
- /*
- * Styles
- */
- .draft-list-item {
- .icon-container {
- .icon-copy,
- .draft-delete,
- .icon-edit {
- cursor: pointer;
- }
- }
- }
|