Converting app into a library WIP

This commit is contained in:
Hazem Krimi
2025-03-17 17:35:18 +01:00
parent 6176ed357d
commit 13f88a09b3
99 changed files with 3213 additions and 23132 deletions
+20
View File
@@ -0,0 +1,20 @@
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;