@import "settings.animations"; @mixin calendar-keyframes { @keyframes menu { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } } } @mixin calendar { animation-name: menu; animation-duration: $animation-duration; animation-fill-mode: both; animation-timing-function: $animation-easing; } @mixin calendar--top { transform-origin: top; } @mixin calendar--bottom { transform-origin: bottom; } @mixin calendar--left { transform-origin: left; } @mixin calendar--right { transform-origin: right; } @mixin calendar--slow { animation-duration: $animation-duration-slow; } @mixin calendar--fast { animation-duration: $animation-duration-fast; }