Files
siv/src/GlobalCSS.tsx
2020-08-13 04:35:49 -07:00

28 lines
577 B
TypeScript

export const GlobalCSS = () => {
return (
<style global jsx>{`
body {
color: #222;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans,
Droid Sans, Helvetica Neue, sans-serif;
font-size: 0.875rem;
letter-spacing: 0.01071em;
line-height: 1.43;
max-width: 100%;
}
a {
color: #0070f3;
text-decoration: none;
}
a:hover,
a:focus,
a:active {
text-decoration: underline;
}
`}</style>
)
}