mirror of
https://github.com/hazemKrimi/crimson-quirks-ui.git
synced 2026-05-02 02:30:29 +00:00
21 lines
345 B
TypeScript
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;
|