13 lines
310 B
TypeScript
13 lines
310 B
TypeScript
|
|
import { style } from '@vanilla-extract/css';
|
||
|
|
import { color, config } from 'folds';
|
||
|
|
|
||
|
|
export const SplashScreen = style({
|
||
|
|
minHeight: '100%',
|
||
|
|
backgroundColor: color.Background.Container,
|
||
|
|
color: color.Background.OnContainer,
|
||
|
|
});
|
||
|
|
|
||
|
|
export const SplashScreenFooter = style({
|
||
|
|
padding: config.space.S400,
|
||
|
|
});
|