Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
206 changes: 205 additions & 1 deletion 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 @@ -65,6 +65,7 @@ regex = "1.12.3"
rfd = { version = "0.17.2", default-features = false }
rust_decimal = { version = "1.40.0", features = ["db-postgres", "serde"] }
scraper = "0.25.0"
self_update = { version = "0.42", default-features = false, features = ["archive-tar", "archive-zip", "compression-flate2", "compression-zip-deflate", "rustls"] }
serde = { version = "1.0.228", features = ["derive"] }
sha2 = "0.10"
serde_json = "1.0.149"
Expand Down
1 change: 1 addition & 0 deletions arenabuddy/arenabuddy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ notify = { workspace = true }
open = { workspace = true }
postgresql_embedded = { workspace = true, features = ["bundled"] }
rand = { workspace = true }
self_update = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
sha2 = { workspace = true }
Expand Down
21 changes: 21 additions & 0 deletions arenabuddy/arenabuddy/assets/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
--color-amber-600: oklch(66.6% 0.179 58.318);
--color-yellow-400: oklch(85.2% 0.199 91.936);
--color-yellow-600: oklch(68.1% 0.162 75.834);
--color-yellow-700: oklch(55.4% 0.135 66.442);
--color-green-100: oklch(96.2% 0.044 156.743);
--color-green-400: oklch(79.2% 0.209 151.711);
--color-green-600: oklch(62.7% 0.194 149.214);
Expand Down Expand Up @@ -515,6 +516,13 @@
margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
}
}
.space-x-4 {
:where(& > :not(:last-child)) {
--tw-space-x-reverse: 0;
margin-inline-start: calc(calc(var(--spacing) * 4) * var(--tw-space-x-reverse));
margin-inline-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-x-reverse)));
}
}
.space-x-6 {
:where(& > :not(:last-child)) {
--tw-space-x-reverse: 0;
Expand Down Expand Up @@ -641,6 +649,9 @@
.bg-white {
background-color: var(--color-white);
}
.bg-yellow-600 {
background-color: var(--color-yellow-600);
}
.bg-gradient-to-r {
--tw-gradient-position: to right in oklab;
background-image: linear-gradient(var(--tw-gradient-stops));
Expand Down Expand Up @@ -843,6 +854,9 @@
.text-purple-800 {
color: var(--color-purple-800);
}
.text-red-400 {
color: var(--color-red-400);
}
.text-red-600 {
color: var(--color-red-600);
}
Expand Down Expand Up @@ -974,6 +988,13 @@
}
}
}
.hover\:bg-yellow-700 {
&:hover {
@media (hover: hover) {
background-color: var(--color-yellow-700);
}
}
}
.hover\:text-blue-400 {
&:hover {
@media (hover: hover) {
Expand Down
Loading