Skip to content

Commit

Permalink
feat: Add Tailwind CSS and custom styles
Browse files Browse the repository at this point in the history
  • Loading branch information
ikurotime committed Dec 29, 2023
1 parent f6a9abe commit d2f1501
Show file tree
Hide file tree
Showing 7 changed files with 781 additions and 1 deletion.
23 changes: 23 additions & 0 deletions assets/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
}
}

.animate-in {
animation: animateIn 0.3s ease 0.15s both;
}

@keyframes animateIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
Loading

0 comments on commit d2f1501

Please sign in to comment.