@eventcatalogtest/studio
Version:
A drag and drop UI for distributed systems that keeps your diagrams where they belong – in your repo
24 lines (21 loc) • 431 B
CSS
@import "tailwindcss";
/* @import "@repo/visualiser/styles.css"; */
@import "@eventcatalog/visualizer/dist/styles.css";
@theme {
--blue-1000: #2a8af6;
--purple-1000: #a853ba;
--red-1000: #e92a67;
}
@keyframes slideInRight {
from {
transform: translateX(100%);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
.animate-slide-in-right {
animation: slideInRight 0.3s ease-out forwards;
}