forked from
samuel.fm/statusphere-react
the statusphere demo reworked into a vite/react app in a monorepo
1@import 'tailwindcss';
2
3@keyframes fadeOut {
4 0% { opacity: 1; }
5 75% { opacity: 1; } /* Hold full opacity for most of the animation */
6 100% { opacity: 0; }
7}
8
9.status-message-fade {
10 animation: fadeOut 2s forwards;
11}
12
13/* Base styling */
14@layer base {
15 body {
16 @apply bg-gray-50 dark:bg-gray-900 text-gray-900 dark:text-gray-100;
17 }
18}