Changing theme. Adding jq to reqs
This commit is contained in:
parent
03376b1cc8
commit
8a74be6e5a
|
@ -25,6 +25,7 @@ Made with [Rust](https://www.rust-lang.org), [ripgrep](https://github.com/BurntS
|
|||
- [Rust](https://www.rust-lang.org/)
|
||||
- [Yarn](https://yarnpkg.com/en/)
|
||||
- [SQLite3](https://www.sqlite.org/index.html)
|
||||
- [jq command line JSON parser: Needs at least jq-1.6](https://stedolan.github.io/jq/)
|
||||
|
||||
### Running
|
||||
|
||||
|
|
|
@ -30,7 +30,7 @@ export class Navbar extends Component<any, State> {
|
|||
|
||||
navbar() {
|
||||
return (
|
||||
<nav class="navbar navbar-dark navbar-purple p-1 shadow">
|
||||
<nav class="navbar navbar-light bg-light p-1 shadow">
|
||||
<a class="navbar-brand mx-1" href="#">
|
||||
<i class="fas fa-fw fa-database mr-1"></i>
|
||||
Torrents.csv
|
||||
|
@ -58,7 +58,7 @@ export class Navbar extends Component<any, State> {
|
|||
<option value="torrent">Torrent</option>
|
||||
<option value="file">File</option>
|
||||
</select>
|
||||
<button class="btn btn-light bg-white border-0 rounded-right no-outline" type="submit">
|
||||
<button class="btn btn-secondary border-0 rounded-right no-outline" type="submit">
|
||||
<i className="fas fa-fw fa-search"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<link rel="shortcut icon" type="image/ico" href="/static/assets/favicon.ico" />
|
||||
|
||||
<title>Torrents.csv</title>
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://bootswatch.com/4/darkly/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/balloon-css/0.5.0/balloon.min.css">
|
||||
</head>
|
||||
|
@ -17,4 +17,4 @@
|
|||
$bundles
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue