sdy

update main page

...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
24 work correctly both with client-side routing and a non-root public URL. 24 work correctly both with client-side routing and a non-root public URL.
25 Learn how to configure a non-root public URL by running `npm run build`. 25 Learn how to configure a non-root public URL by running `npm run build`.
26 --> 26 -->
27 - <title>React App</title> 27 + <title>Search App</title>
28 </head> 28 </head>
29 <body> 29 <body>
30 <noscript>You need to enable JavaScript to run this app.</noscript> 30 <noscript>You need to enable JavaScript to run this app.</noscript>
......
1 +html {
2 + width: 100%;
3 + height: 100%;
4 +}
5 +
1 body { 6 body {
2 margin: 0; 7 margin: 0;
3 - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 8 + padding: 0;
4 - 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 9 + width: 100%;
5 - sans-serif; 10 + height: 100%;
6 - -webkit-font-smoothing: antialiased; 11 + background-color: #24262E;
7 - -moz-osx-font-smoothing: grayscale; 12 + color: white;
13 +}
14 +
15 +#root {
16 + width: 100%;
17 + height: 100%;
8 } 18 }
9 19
10 code { 20 code {
11 font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', 21 font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
12 - monospace; 22 + monospace;
13 } 23 }
......