mirror of
https://github.com/siv-org/siv.git
synced 2026-05-03 03:00:59 -04:00
28 lines
577 B
TypeScript
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>
|
|
)
|
|
}
|