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.

16 lines (13 loc) 278 B
import { CSSProperties } from 'react'; export const mobileHeaderSticky: CSSProperties = { position: 'sticky', top: 0, width: '100%', zIndex: 100, }; export const mobileHeaderFixed: CSSProperties = { position: 'absolute', top: 0, width: '100%', zIndex: 100, };