File size: 938 Bytes
c369b38 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
@import "tailwindcss";
@source "../node_modules/streamdown/dist/index.js";
@keyframes glisten {
0% {
background-position: 200% 0;
}
100% {
background-position: -200% 0;
}
}
.animate-glisten {
/* Using amber-700 and amber-300 for the gradient */
background-image: linear-gradient(
90deg,
rgba(168, 85, 6, 1) 0%,
rgba(253, 186, 116, 1) 40%,
rgba(253, 186, 116, 1) 60%,
rgba(168, 85, 6, 1) 100%
);
color: transparent;
background-size: 200% auto;
background-clip: text;
-webkit-background-clip: text;
animation: glisten 3s linear infinite;
}
/* Overrides */
.message h3[data-streamdown="heading-3"] {
@apply mt-3;
}
.message .collapsible p {
@apply my-1;
}
.message p {
@apply whitespace-pre-wrap;
}
@keyframes wobble {
0%,
100% {
transform: rotate(-3deg);
}
50% {
transform: rotate(3deg);
}
}
.animate-wobble {
animation: wobble 2s ease-in-out infinite;
}
|