Added global styles and test book list

This commit is contained in:
Dmitriy Shishkov 2021-07-14 16:48:08 +05:00
parent 36576874e2
commit 59ba282634
No known key found for this signature in database
GPG Key ID: 14358F96FCDD8060
4 changed files with 72 additions and 1 deletions

44
src/assets/bookList.json Normal file

File diff suppressed because one or more lines are too long

24
src/index.css Normal file
View File

@ -0,0 +1,24 @@
* {
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;
}

View File

@ -1,6 +1,8 @@
import React from "react";
import ReactDOM from "react-dom";
import "./index.css";
import { App } from "./App";
ReactDOM.render(

View File

@ -8,6 +8,7 @@
"jsx": "react-jsx",
"lib": ["DOM"],
"module": "ES2020",
"moduleResolution": "node"
"moduleResolution": "node",
"resolveJsonModule": true
}
}