@plteam/chat-ui
Version:
CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript
15 lines (14 loc) • 405 B
JavaScript
import { styled } from "@mui/material/styles";
const TimeTextWrapper = styled('div')(({ theme }) => ({
padding: theme.spacing(1.5, 2, 1, 1.5),
position: 'sticky',
top: 0,
left: 0,
backgroundColor: theme.palette.background.default,
zIndex: 1,
[theme.breakpoints.down('md')]: {
background: '#fff',
top: 0,
}
}));
export default TimeTextWrapper;