Skip to content

Commit

Permalink
style: directory button
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 committed Mar 4, 2024
1 parent f050b27 commit 5f1bd24
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions static/code/css/ubq.css
Original file line number Diff line number Diff line change
Expand Up @@ -1182,3 +1182,12 @@ div#down-arrow-wrapper {
padding-bottom: 24px;
background-image: url(../../image/grid-25.png);
}

input[type="button"] {
font-weight: 600;
background: #00ffff40;
padding: 16px 32px;
}
input[type="button"]:hover{
background: #00ffff80;
}
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export function devPoolSpread() {
.then((totalRewards) => {
const totalRewardsElement = document.getElementById("fetch-total-rewards-target");
if (!totalRewardsElement) throw new Error("No total rewards element");
totalRewardsElement.innerText = `$${totalRewards} USD in task rewards now.`;
totalRewardsElement.innerText = `Earn $${totalRewards} USD in task rewards now.`;
})
.catch((error) => {
console.error("Error fetching total rewards:", error);
Expand Down
2 changes: 1 addition & 1 deletion static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ <h1>Join Ubiquity DAO</h1>
<figure>
<h2 id="fetch-total-rewards-target"></h2>
<h3
><a href="https://work.ubq.fi/"><input type="button" value="View the DevPool Directory" /></a
><a href="https://work.ubq.fi/"><input type="button" value="Visit the DevPool Directory" /></a
></h3>
</figure>
</div>
Expand Down

0 comments on commit 5f1bd24

Please sign in to comment.