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

21 lines
328 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',
width: '100%',
height: '100%',
},
]);
export const Video = style([
DefaultReset,
{
objectFit: 'cover',
width: '100%',
height: '100%',
},
]);