UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

33 lines (32 loc) 729 B
import { createStaticStyles } from "antd-style"; //#region src/mobile/ChatInputArea/style.ts const styles = createStaticStyles(({ css, cssVar }) => { return { container: css` flex: none; padding-block: 12px; border-block-start: 1px solid ${cssVar.colorFillTertiary}; background: ${cssVar.colorFillQuaternary}; `, expand: css` position: absolute; width: 100%; height: 100%; `, expandButton: css` position: absolute; inset-inline-end: 14px; `, expandTextArea: css` flex: 1; `, inner: css` height: inherit; padding-block: 0; padding-inline: 8px; ` }; }); //#endregion export { styles }; //# sourceMappingURL=style.mjs.map