Files
cinny/src/app/features/lobby/style.css.ts
T

16 lines
399 B
TypeScript
Raw Normal View History

import { style } from '@vanilla-extract/css';
import { DefaultReset, color, config } from 'folds';
export const AvatarPlaceholder = style({
backgroundColor: color.Secondary.Container,
});
export const LinePlaceholder = style([
DefaultReset,
{
width: '100%',
height: config.lineHeight.T200,
borderRadius: config.radii.R300,
backgroundColor: color.Secondary.Container,
},
]);