24 lines
339 B
TypeScript
24 lines
339 B
TypeScript
import { createGlobalStyle } from 'styled-components'
|
|
|
|
export const GlobalStyle = createGlobalStyle`
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: 'Poppins';
|
|
background-color: #f9f9f9;
|
|
}
|
|
|
|
main {
|
|
padding: 2.5rem;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
`;
|