You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
11 lines
477 B
11 lines
477 B
@tailwind base; |
|
@tailwind components; |
|
@tailwind utilities; |
|
|
|
|
|
.fade-in { opacity: 0; animation: fadeIn 1s ease-in forwards; } |
|
.slide-up { transform: translateY(20px); animation: slideUp 1s ease-out forwards; } |
|
.scale-hover:hover { transform: scale(1.05); transition: transform 0.3s ease-in-out; } |
|
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } |
|
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } } |
|
|
|
|