Skip to content

Commit

Permalink
Update to latest RQ format
Browse files Browse the repository at this point in the history
  • Loading branch information
willcrichton committed Aug 1, 2024
1 parent df12ce4 commit f760855
Show file tree
Hide file tree
Showing 10 changed files with 646 additions and 175 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ dioxus-logger = "0.5.1"
futures-util = "0.3.30"
http = "1.1.0"
octocrab = "0.38.0"
parking_lot = "0.12.3"
regex = "1.10.5"
serde = { version = "1.0.204", features = ["derive"] }
serde_json = "1.0.120"
Expand Down
3 changes: 3 additions & 0 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@
skip_core_tasks = true
default_to_workspace = false

[tasks.bundle]
script = "dx bundle"

[tasks.watch]
script = "cargo watch -s 'dx build'"
46 changes: 45 additions & 1 deletion assets/main.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,47 @@
@import url('./normalize.css');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap');

:root {
--prose-font: "Open Sans", Arial, sans-serif;
--code-font: "Source Code Pro", monospace;
}

html {
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
font-family: var(--prose-font);
font-size: 18px;
}

code, pre {
font-family: var(--code-font);
}

#app {
padding: 1rem;
position: relative;
}

#refresh {
position: absolute;
top: 1rem;
right: 1rem;
}

h1 {
margin-top: 0;
}

.stages li {
margin-bottom: 1rem;
}

.stage-title {
font-weight: bold;
}

.separator {
margin: 0 0.5rem;
}

.status {
font-style: italic;
}
Loading

0 comments on commit f760855

Please sign in to comment.