Add normalize.css

This commit is contained in:
Paul W. 2021-12-08 02:53:04 -05:00
parent dc397934cf
commit dcb0c403b3
3 changed files with 13 additions and 0 deletions

11
package-lock.json generated
View File

@ -8,6 +8,7 @@
"@types/react": "^17.0.37",
"dotenv": "^10.0.0",
"next": "^11.1.3",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^7.1.1"
@ -7027,6 +7028,11 @@
"node": ">=0.10.0"
}
},
"node_modules/normalize.css": {
"version": "8.0.1",
"resolved": "https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz",
"integrity": "sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg=="
},
"node_modules/nth-check": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz",
@ -14140,6 +14146,11 @@
"resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
"integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="
},
"normalize.css": {
"version": "8.0.1",
"resolved": "https://registry.npmjs.org/normalize.css/-/normalize.css-8.0.1.tgz",
"integrity": "sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg=="
},
"nth-check": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz",

View File

@ -9,6 +9,7 @@
"@types/react": "^17.0.37",
"dotenv": "^10.0.0",
"next": "^11.1.3",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-markdown": "^7.1.1"

View File

@ -1,4 +1,5 @@
import type { AppProps } from 'next/app'
import 'normalize.css';
import '../styles/global.css';
export default function MyApp({ Component, pageProps }: AppProps) {