Files
crimson-quirks-ui/src/GlobalStyles.tsx
T
2021-04-22 01:52:22 +01:00

21 lines
345 B
TypeScript

import { createGlobalStyle } from 'styled-components';
const GlobalStyles = createGlobalStyle`
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 1.5;
outline: none;
}
ul {
list-style: none
}
`;
export default GlobalStyles;