branch:
styles.css
674 bytesRaw
@import "tailwindcss";
@import "@cloudflare/kumo/styles/tailwind";
@import "@cloudflare/agents-ui/theme/workers.css";
@source "../../../node_modules/@cloudflare/kumo/dist/**/*.{js,jsx,ts,tsx}";
html,
body,
#root {
width: 100%;
height: 100%;
margin: 0;
}
@keyframes pulse-glow {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
@keyframes toast-slide-in {
from {
opacity: 0;
transform: translateX(20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
@layer utilities {
.animate-pulse-glow {
animation: pulse-glow 1.5s ease-in-out infinite;
}
.animate-toast-in {
animation: toast-slide-in 0.2s ease;
}
}