mirror of
https://github.com/hazemKrimi/crimson-quirks-ui.git
synced 2026-05-01 18:20:28 +00:00
16 lines
289 B
TypeScript
16 lines
289 B
TypeScript
import { createGlobalStyle } from 'styled-components';
|
|
|
|
const GlobalStyles = createGlobalStyle`
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
font-family: 'Inter', monospace;
|
|
font-size: 16px;
|
|
line-height: 1.5;
|
|
outline: none;
|
|
}
|
|
`;
|
|
|
|
export default GlobalStyles;
|