@@ -30,8 +30,8 @@ defmodule AlgoraWeb.Org.BountiesLive do
30
30
< h2 class = "text-2xl font-bold dark:text-white " > Bounties</ h2 >
31
31
< p class = "text-sm dark:text-gray-300 " >
32
32
Create new bounties using the
33
- < code class = "text-base font-semibold text-cyan-300 " >
34
- < span > /bounty</ span > < span class = " text-emerald-300 " > $AMOUNT </ span >
33
+ < code class = "mx-1 inline-block rounded bg-emerald-950/75 px-1 py-0.5 font-mono text-sm text-emerald-400 ring-1 ring-emerald-400/25 " >
34
+ /bounty $1000
35
35
</ code >
36
36
command on Github.
37
37
</ p >
@@ -51,14 +51,14 @@ defmodule AlgoraWeb.Org.BountiesLive do
51
51
type = "button "
52
52
role = "tab "
53
53
aria-selected = { @ current_tab == :open }
54
- class = { "inline-flex items-center justify-center whitespace-nowrap rounded-sm px-3 py-1.5 text-sm font-medium #{ if @ current_tab == :open , do: "bg-indigo-600 text-white" , else: "hover:bg-indigo-600 /50" } " }
54
+ class = { "inline-flex items-center justify-center whitespace-nowrap rounded-sm px-3 py-1.5 text-sm font-medium #{ if @ current_tab == :open , do: "bg-emerald-700 text-white" , else: "hover:bg-emerald-700 /50" } " }
55
55
data-state = { if @ current_tab == :open , do: "active" , else: "inactive" }
56
56
phx-click = "change-tab "
57
57
phx-value-tab = "open "
58
58
>
59
59
< div class = "relative flex items-center gap-2.5 text-sm md:text-base " >
60
60
< div class = "truncate " > Open</ div >
61
- < span class = "min-w-[1ch] font-mono text-indigo -200 transition duration-300 ease-out " >
61
+ < span class = { "min-w-[1ch] font-mono #{ if @ current_tab == :open , do: " text-emerald -200" , else: "text-gray-400 group-hover:text-emerald-200" } " } >
62
62
{ @ open_count }
63
63
</ span >
64
64
</ div >
@@ -67,14 +67,14 @@ defmodule AlgoraWeb.Org.BountiesLive do
67
67
type = "button "
68
68
role = "tab "
69
69
aria-selected = { @ current_tab == :completed }
70
- class = { "inline-flex items-center justify-center whitespace-nowrap rounded-sm px-3 py-1.5 text-sm font-medium #{ if @ current_tab == :completed , do: "bg-indigo-600 text-white" , else: "hover:bg-indigo-600 /50" } " }
70
+ class = { "inline-flex items-center justify-center whitespace-nowrap rounded-sm px-3 py-1.5 text-sm font-medium #{ if @ current_tab == :completed , do: "bg-emerald-700 text-white" , else: "hover:bg-emerald-700 /50" } " }
71
71
data-state = { if @ current_tab == :completed , do: "active" , else: "inactive" }
72
72
phx-click = "change-tab "
73
73
phx-value-tab = "completed "
74
74
>
75
75
< div class = "relative flex items-center gap-2.5 text-sm md:text-base " >
76
76
< div class = "truncate " > Completed</ div >
77
- < span class = "min-w-[1ch] font-mono text-gray-400 transition duration-300 ease-out group-hover:text-indigo -200 " >
77
+ < span class = { "min-w-[1ch] font-mono #{ if @ current_tab == :completed , do: " text-emerald-200" , else: "text-gray-400 group-hover:text-emerald -200"} " } >
78
78
{ @ completed_count }
79
79
</ span >
80
80
</ div >
@@ -219,7 +219,7 @@ defmodule AlgoraWeb.Org.BountiesLive do
219
219
View
220
220
</ . link >
221
221
< . link
222
- class = "inline-flex h-10 items-center justify-center rounded-md bg-indigo -600 px-4 py-2 text-sm font-medium text-white hover:bg-indigo -600/90 "
222
+ class = "inline-flex h-10 items-center justify-center rounded-md bg-emerald -600 px-4 py-2 text-sm font-medium text-white hover:bg-emerald -600/90 "
223
223
href = "# "
224
224
>
225
225
Reward
0 commit comments