@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
28 lines (23 loc) • 492 B
JavaScript
"use client";
import { createStaticStyles } from "antd-style";
//#region src/EditorSlashMenu/style.ts
const styles = createStaticStyles(({ css }) => ({
hiddenInput: css`
position: absolute;
overflow: hidden;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
border: 0;
white-space: nowrap;
clip: rect(0, 0, 0, 0);
`,
list: css`
overflow: auto;
max-height: 320px;
`
}));
//#endregion
export { styles };
//# sourceMappingURL=style.mjs.map