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.

19 lines (15 loc) 455 B
import { Theme, css } from 'antd-style'; export default ({ token }: { prefixCls: string; token: Theme }) => css` .${token.prefixCls}-popover { z-index: 1100; } .${token.prefixCls}-menu-sub.${token.prefixCls}-menu-vertical { border: 1px solid ${token.colorBorder}; box-shadow: ${token.boxShadow}; } .${token.prefixCls}-menu-item-selected { .${token.prefixCls}-menu-title-content { color: ${token.colorText}; } } `;