web-check/src/web-check-live/styles/globals.tsx
Alicia Sykes b090dcadb1 Astro app
2024-05-20 22:44:09 +01:00

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;