Migrate to modernize template

This commit is contained in:
Marek Lesko
2025-10-19 16:34:01 +00:00
parent 9deee01ba3
commit aba8943d17
666 changed files with 25377 additions and 45152 deletions

View File

@@ -0,0 +1,17 @@
$swift-ease-out-duration: 400ms;
$swift-ease-out-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
@function swift-ease-out($property) {
// The Material default animation curves.
$transition: $property $swift-ease-out-duration
$swift-ease-out-timing-function;
@return $transition;
}
@function fast-out-slow($property) {
// The Material default animation curves.
$transition: $property 225ms cubic-bezier(0.4, 0, 0.2, 1);
@return $transition;
}