Files
cinny/src/app/components/message/placeholder/LinePlaceholder.css.ts
T

13 lines
307 B
TypeScript
Raw Normal View History

2023-10-06 13:44:06 +11:00
import { style } from '@vanilla-extract/css';
import { DefaultReset, color, config, toRem } from 'folds';
export const LinePlaceholder = style([
DefaultReset,
{
width: '100%',
height: toRem(16),
borderRadius: config.radii.R300,
backgroundColor: color.SurfaceVariant.Container,
},
]);