remove font awesome and optimize images

This commit is contained in:
2024-11-10 06:20:08 +01:00
parent e206765044
commit 5d267af600
14 changed files with 189 additions and 124 deletions

View File

@@ -1,3 +1,17 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
.my-animate {
opacity: 1 !important;
transform: translateY(0) !important;
transition: opacity 0.3s ease, transform 0.3s ease;
}
.hidden-for-animation {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.3s ease, transform 0.3s ease;
}
}

File diff suppressed because one or more lines are too long