mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-11 00:35:07 +01:00
tailwind
Co-authored-by: William Oldham <wegg7250@gmail.com>
This commit is contained in:
parent
3a262b9fbf
commit
8d7a268903
12
package.json
12
package.json
@ -4,7 +4,6 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"homepage": "https://movie.squeezebox.dev",
|
"homepage": "https://movie.squeezebox.dev",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@craco/craco": "^6.4.3",
|
|
||||||
"@testing-library/jest-dom": "^5.11.4",
|
"@testing-library/jest-dom": "^5.11.4",
|
||||||
"@testing-library/react": "^11.1.0",
|
"@testing-library/react": "^11.1.0",
|
||||||
"@testing-library/user-event": "^12.1.10",
|
"@testing-library/user-event": "^12.1.10",
|
||||||
@ -16,13 +15,13 @@
|
|||||||
"react-dom": "^17.0.2",
|
"react-dom": "^17.0.2",
|
||||||
"react-helmet": "^6.1.0",
|
"react-helmet": "^6.1.0",
|
||||||
"react-router-dom": "^5.2.0",
|
"react-router-dom": "^5.2.0",
|
||||||
"react-scripts": "4.0.3",
|
"react-scripts": "^5.0.0",
|
||||||
"web-vitals": "^1.0.1"
|
"web-vitals": "^1.0.1"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "craco start",
|
"start": "react-scripts start",
|
||||||
"build": "craco build",
|
"build": "react-scripts build",
|
||||||
"test": "craco test"
|
"eject": "react-scripts eject"
|
||||||
},
|
},
|
||||||
"eslintConfig": {
|
"eslintConfig": {
|
||||||
"extends": [
|
"extends": [
|
||||||
@ -48,6 +47,9 @@
|
|||||||
"@types/react": "^17.0.39",
|
"@types/react": "^17.0.39",
|
||||||
"@types/react-dom": "^17.0.11",
|
"@types/react-dom": "^17.0.11",
|
||||||
"@types/react-router-dom": "^5.3.3",
|
"@types/react-router-dom": "^5.3.3",
|
||||||
|
"autoprefixer": "^10.4.2",
|
||||||
|
"postcss": "^8.4.6",
|
||||||
|
"tailwindcss": "^3.0.20",
|
||||||
"typescript": "^4.5.5"
|
"typescript": "^4.5.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,17 +1,3 @@
|
|||||||
body, html {
|
@tailwind base;
|
||||||
margin: 0;
|
@tailwind components;
|
||||||
min-height: 100vh;
|
@tailwind utilities;
|
||||||
}
|
|
||||||
|
|
||||||
body, html, input, button {
|
|
||||||
font-family: 'Segoe UI', 'Roboto', 'Oxygen',
|
|
||||||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
||||||
sans-serif;
|
|
||||||
-webkit-font-smoothing: antialiased;
|
|
||||||
-moz-osx-font-smoothing: grayscale;
|
|
||||||
font-size: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
*:focus {
|
|
||||||
outline: none;
|
|
||||||
}
|
|
||||||
|
@ -16,7 +16,7 @@ export function SearchView() {
|
|||||||
<div>
|
<div>
|
||||||
<h1>Search</h1>
|
<h1>Search</h1>
|
||||||
<SearchBarInput onChange={setSearch} value={search} onClick={runSearch}/>
|
<SearchBarInput onChange={setSearch} value={search} onClick={runSearch}/>
|
||||||
<h1>Search results</h1>
|
<h1 className="bg-red-500">Search results</h1>
|
||||||
{results.map((v)=>(<WatchedMediaCard media={v} />))}
|
{results.map((v)=>(<WatchedMediaCard media={v} />))}
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
|
7
tailwind.config.js
Normal file
7
tailwind.config.js
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
module.exports = {
|
||||||
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
||||||
|
theme: {
|
||||||
|
extend: {},
|
||||||
|
},
|
||||||
|
plugins: [],
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user