UNPKG

@lobehub/chat

Version:

Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.

21 lines (19 loc) 439 B
import { createStyles } from 'antd-style'; export const useStyles = createStyles(({ css, token }) => ({ container: css` min-height: 100%; `, document: css` position: relative; `, documentContainer: css` padding-block: 10px; background-color: ${token.colorBgLayout}; `, page: css` overflow: hidden; margin-block-end: 12px; border-radius: 4px; box-shadow: ${token.boxShadowTertiary}; `, }));