mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-02-27 15:43:07 +01:00
22 lines
406 B
TypeScript
22 lines
406 B
TypeScript
|
import { style } from '@vanilla-extract/css';
|
||
|
import { DefaultReset, config } from 'folds';
|
||
|
|
||
|
export const EventReaders = style([
|
||
|
DefaultReset,
|
||
|
{
|
||
|
height: '100%',
|
||
|
},
|
||
|
]);
|
||
|
|
||
|
export const Header = style({
|
||
|
paddingLeft: config.space.S400,
|
||
|
paddingRight: config.space.S300,
|
||
|
|
||
|
flexShrink: 0,
|
||
|
});
|
||
|
|
||
|
export const Content = style({
|
||
|
paddingLeft: config.space.S200,
|
||
|
paddingBottom: config.space.S400,
|
||
|
});
|