29 lines
489 B
TypeScript
29 lines
489 B
TypeScript
import { createGlobalStyle } from 'styled-components'
|
|
|
|
export const GlobalStyle = createGlobalStyle`
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Poppins';
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
`;
|
|
|
|
// html,
|
|
// body {
|
|
// padding: 0;
|
|
// margin: 0;
|
|
// font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
|
|
// Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
|
// }
|
|
|
|
|