28 lines
381 B
TypeScript
28 lines
381 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;
|
|
|
|
button {
|
|
cursor: pointer
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
`;
|