Files
School/Anul 2/Semestrul 2/MPP/Silk Road/Silk Road Web/src/styled/global.ts
T
2024-08-31 12:07:21 +03:00

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;