_user.scss 400 B

12345678910111213141516171819202122232425
  1. $easeInOutCubic: cubic-bezier(0.65, 0, 0.35, 1);
  2. %transitionForCompactMode {
  3. // set transition-duration (normal -> compact)
  4. transition: all 300ms $easeInOutCubic;
  5. }
  6. /*
  7. * Styles
  8. */
  9. .grw-usermenu-notification-icon {
  10. position: absolute;
  11. top: -4px;
  12. left: 30px;
  13. }
  14. .draft-list-item {
  15. .icon-container {
  16. .icon-copy,
  17. .draft-delete,
  18. .icon-edit {
  19. cursor: pointer;
  20. }
  21. }
  22. }