generated from Indie-Creator-Community/side-project-starter-kit
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from serudda/feat/footer-enhancements-easing-b…
…ounce Feat: Footer enhancements open source
- Loading branch information
Showing
2 changed files
with
60 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,54 @@ | ||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; | ||
|
||
@layer utilities { | ||
.easing-bounce { | ||
transition-timing-function: linear( | ||
0, | ||
0.004, | ||
0.016, | ||
0.035, | ||
0.062, | ||
0.098, | ||
0.141 11.4%, | ||
0.25, | ||
0.39, | ||
0.562, | ||
0.764, | ||
1 30.3%, | ||
0.847 34.8%, | ||
0.787, | ||
0.737, | ||
0.699, | ||
0.672, | ||
0.655, | ||
0.65, | ||
0.656, | ||
0.672, | ||
0.699, | ||
0.738, | ||
0.787, | ||
0.847 61.7%, | ||
1 66.2%, | ||
0.946, | ||
0.908, | ||
0.885 74.2%, | ||
0.879, | ||
0.878, | ||
0.879, | ||
0.885 79.5%, | ||
0.908, | ||
0.946, | ||
1 87.4%, | ||
0.981, | ||
0.968, | ||
0.96, | ||
0.957, | ||
0.96, | ||
0.968, | ||
0.981, | ||
1 | ||
); | ||
} | ||
} |