diff --git a/README.md b/README.md index 7c7d630..8a12f42 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # \

- <Logo description> + <Logo description>

## Overview diff --git a/src/App.tsx b/src/App.tsx index bffe779..e57a5c7 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1 +1,3 @@ +import React from "react"; + export const App = () =>
Hello, world
; diff --git a/src/index.css b/src/index.css new file mode 100644 index 0000000..2ecc5ad --- /dev/null +++ b/src/index.css @@ -0,0 +1,25 @@ +* { + margin: 0; + padding: 0; + -ms-overflow-style: none; + scrollbar-width: none; + box-sizing: border-box; + outline: none; +} + +*::-webkit-scrollbar { + display: none; +} + +body { + font-family: Inter, system-ui, sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + background: rgba(54, 54, 69, 0.05) none repeat scroll 0% 0%; + color: rgb(54, 54, 69); +} + +code { + font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", + monospace; +} diff --git a/src/index.tsx b/src/index.tsx index b2e7395..0f66784 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,6 +1,8 @@ import React from "react"; import ReactDOM from "react-dom"; +import './index.css' + import { App } from "./App"; ReactDOM.render(