mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 15:05:35 +00:00
20 lines
446 B
TypeScript
20 lines
446 B
TypeScript
import { css } from '@emotion/react';
|
|
import { theme } from './theme';
|
|
|
|
const documentStyle = css({
|
|
'html, body, #app': {
|
|
height: '100svh',
|
|
width: '100svw',
|
|
fontFamily: "'Poppins', sans-serif",
|
|
fontSize: '14px',
|
|
color: theme.colors.font,
|
|
backgroundColor: theme.colors.background,
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
flexDirection: 'column',
|
|
overflow: 'hidden',
|
|
},
|
|
});
|
|
|
|
export default documentStyle;
|