mirror of
https://github.com/Lissy93/web-check.git
synced 2025-04-29 11:54:32 +02:00
21 lines
427 B
XML
21 lines
427 B
XML
import { Global, css } from '@emotion/react';
|
|
|
|
const GlobalStyles = () => (
|
|
<Global
|
|
styles={css`
|
|
@font-face {
|
|
font-family: PTMono;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: url('/fonts/PTMono.ttf') format('ttf');
|
|
}
|
|
body, div, a, p, span, ul, li, small, h1, h2, h3, h4, button, section {
|
|
font-family: PTMono;
|
|
color: #fff;
|
|
}
|
|
`}
|
|
/>
|
|
);
|
|
|
|
export default GlobalStyles;
|