Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix stake loading issues #256

Merged
merged 7 commits into from
Jan 27, 2025
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
change bg colors
  • Loading branch information
Megha-Dev-19 committed Jan 27, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 294e4b654487c2832287ad5f241184d8d51dc896
Original file line number Diff line number Diff line change
@@ -310,20 +310,6 @@ const Theme = styled.div`
fill: var(--theme-color);
}

.use-max-bg {
color: #007aff;
cursor: pointer;
}

.bg-validator-info {
background: rgba(0, 16, 61, 0.06);
color: var(--text-color);
padding-inline: 0.8rem;
padding-block: 0.5rem;
font-weight: 500;
font-size: 13px;
}

.bg-validator-warning {
background: rgba(255, 158, 0, 0.1);
color: var(--other-warning);
Original file line number Diff line number Diff line change
@@ -166,8 +166,8 @@ const code = `
background: ${colors["--theme-color-dark"]} !important;
}
.bg-validator-info {
background: rgba(0, 16, 61, 0.06);
color: ${colors["--text-color"]};
background: ${colors["--grey-04"]} !important;
color: ${colors["--grey-02"]} !important;
padding-inline: 0.8rem;
padding-block: 0.5rem;
font-weight: 500;
Loading