mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-03-13 06:30:01 +01:00
11 lines
387 B
TypeScript
11 lines
387 B
TypeScript
|
import { style } from '@vanilla-extract/css';
|
||
|
import { color, config, toRem } from 'folds';
|
||
|
|
||
|
export const RoomInputPlaceholder = style({
|
||
|
minHeight: toRem(48),
|
||
|
backgroundColor: color.SurfaceVariant.Container,
|
||
|
color: color.SurfaceVariant.OnContainer,
|
||
|
boxShadow: `inset 0 0 0 ${config.borderWidth.B300} ${color.SurfaceVariant.ContainerLine}`,
|
||
|
borderRadius: config.radii.R400,
|
||
|
});
|