2026-03-07 18:03:32 +11:00
|
|
|
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,
|
|
|
|
|
});
|
2026-03-09 14:04:48 +11:00
|
|
|
|
|
|
|
|
export const CallControlContainer = style({
|
|
|
|
|
padding: config.space.S400,
|
|
|
|
|
});
|
2026-03-10 22:45:26 +11:00
|
|
|
|
|
|
|
|
export const PrescreenMessage = style({
|
|
|
|
|
padding: config.space.S200,
|
|
|
|
|
});
|