You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_animations.scss 429B

12345678910111213141516171819
  1. /**
  2. * Project animations
  3. **/
  4. /**
  5. * Slide in animation for extended toolbar (inner) panel.
  6. */
  7. // FIX: Can't use percentage because of breaking animation when width is changed
  8. // (100% of 0 is also zero) Extracted this to config variable.
  9. @include keyframes(slideInExt) {
  10. from { left: -$sidebarWidth; }
  11. to { left: 0; }
  12. }
  13. @include keyframes(slideOutExt) {
  14. from { left: 0; }
  15. to { left: -$sidebarWidth; }
  16. }