@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
30 lines (25 loc) • 718 B
JavaScript
import { fadeIn } from "../../styles/animations.mjs";
import { createStaticStyles } from "antd-style";
//#region src/Markdown/SyntaxMarkdown/style.ts
const styles = createStaticStyles(({ css: css$1 }) => {
return { animated: css$1`
.stream-char {
opacity: 0;
animation-name: ${fadeIn};
animation-duration: 150ms;
animation-timing-function: ease-out;
animation-fill-mode: forwards;
}
.stream-char-revealed {
opacity: 1;
animation: none;
}
.katex-display .katex-html span {
mask: none !important;
animation: none !important;
}
` };
});
//#endregion
export { styles };
//# sourceMappingURL=style.mjs.map