15 lines
212 B
TypeScript
15 lines
212 B
TypeScript
import { createGlobalStyle } from 'styled-components';
|
|
|
|
const GlobalStyle = createGlobalStyle`
|
|
html {
|
|
margin: 0;
|
|
}
|
|
body {
|
|
margin: 0;
|
|
min-width: 320px;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
`;
|
|
|
|
export default GlobalStyle; |