Files
cinny/src/app/components/media/media.css.ts
T

22 lines
364 B
TypeScript
Raw Normal View History

2023-10-06 13:44:06 +11:00
import { style } from '@vanilla-extract/css';
import { DefaultReset } from 'folds';
export const Image = style([
DefaultReset,
{
objectFit: 'cover',
objectPosition: 'center top',
2023-10-06 13:44:06 +11:00
width: '100%',
height: '100%',
},
]);
export const Video = style([
DefaultReset,
{
2023-10-18 13:15:30 +11:00
objectFit: 'contain',
2023-10-06 13:44:06 +11:00
width: '100%',
height: '100%',
},
]);