import { keyframes, style } from '@vanilla-extract/css'; import { DefaultReset, color, config } from 'folds'; const SlideUpAnime = keyframes({ from: { transform: 'translateY(100%)', }, to: { transform: 'translateY(0)', }, }); export const RoomViewTyping = style([ DefaultReset, { padding: `0 ${config.space.S500}`, width: '100%', backgroundColor: color.Surface.Container, color: color.Surface.OnContainer, position: 'absolute', bottom: 0, animation: `${SlideUpAnime} 100ms ease-in-out`, }, ]); export const TypingText = style({ flexGrow: 1, }); // Visually hidden but available to assistive technology. export const SrOnly = style({ position: 'absolute', width: 1, height: 1, padding: 0, margin: -1, overflow: 'hidden', clip: 'rect(0, 0, 0, 0)', whiteSpace: 'nowrap', border: 0, });