* fix member button tooltip in call room header * hide sticker button in room input based on chat window width * render camera on off data instead of duplicate join messages * hide duplicate call member changes instead of rendering as video status * fix prescreen message spacing
28 lines
560 B
TypeScript
28 lines
560 B
TypeScript
import { style } from '@vanilla-extract/css';
|
|
import { config, toRem } from 'folds';
|
|
|
|
export const CallViewContent = style({
|
|
padding: config.space.S400,
|
|
paddingRight: 0,
|
|
minHeight: '100%',
|
|
});
|
|
|
|
export const ControlCard = style({
|
|
padding: config.space.S300,
|
|
});
|
|
|
|
export const ControlDivider = style({
|
|
height: toRem(24),
|
|
});
|
|
|
|
export const CallMemberCard = style({
|
|
padding: config.space.S300,
|
|
});
|
|
|
|
export const CallControlContainer = style({
|
|
padding: config.space.S400,
|
|
});
|
|
|
|
export const PrescreenMessage = style({
|
|
padding: config.space.S200,
|
|
});
|