-
Notifications
You must be signed in to change notification settings - Fork 7
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
Add validator management page #425
base: develop
Are you sure you want to change the base?
Changes from all commits
7da7107
748cf6e
3854023
076d4d7
58b99c7
bf860ea
ddfa32b
a53b441
14379bf
6dce4da
fdeac1d
3c68769
dd91951
9e05b7b
2495bc1
435d99e
06c91ba
d0abddd
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,6 @@ | |
}, | ||
"author": "SKALE Labs", | ||
"devDependencies": { | ||
"ethers": "*.*.*", | ||
"typescript": "^4.9.5" | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,6 +76,10 @@ body { | |
width: 100%; | ||
} | ||
|
||
.fullH { | ||
height: 100%; | ||
} | ||
|
||
.mp__btnConnect { | ||
position: relative; | ||
|
||
|
@@ -457,6 +461,14 @@ body::-webkit-scrollbar { | |
background: rgb(244 139 54 / 13%); | ||
} | ||
|
||
.btnprimary { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Flagged for Consistency: .btnprimary -> .btnPrimary |
||
background: rgba(147, 184, 236, 0.16); | ||
} | ||
|
||
.btnDisabled { | ||
background: #262626; | ||
} | ||
|
||
.btnSmLoading { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consistentcy: .btnSmallLoading |
||
padding: 0.5em 1.5em 0.5em 3em !important; | ||
} | ||
|
@@ -543,6 +555,12 @@ body::-webkit-scrollbar { | |
} | ||
} | ||
|
||
.MuiToggleButton-root { | ||
border-radius: 25px !important; | ||
padding: 4px 10px; | ||
border: none !important; | ||
} | ||
|
||
.copyBoard { | ||
margin: 10px 0 !important; | ||
padding: 13pt 15pt !important; | ||
|
@@ -791,6 +809,22 @@ input[type=number] { | |
} | ||
} | ||
|
||
.chipNotification { | ||
background: #e94e4e; | ||
border-radius: 20px; | ||
width: 20px; | ||
height: 20px; | ||
text-align: center; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
|
||
p { | ||
color: #000000de !important; | ||
font-weight: 600 !important; | ||
} | ||
} | ||
|
||
.chipTrending { | ||
background: linear-gradient(180deg, #e56d36, #D0602D) !important; | ||
|
||
|
@@ -825,12 +859,13 @@ input[type=number] { | |
} | ||
|
||
.chipXs { | ||
border-radius: 20px; | ||
padding: 3px 6px; | ||
border-radius: 15px; | ||
padding: 6px 8px; | ||
text-align: center; | ||
|
||
svg { | ||
width: 14px; | ||
height: 14px; | ||
width: 12px; | ||
height: 12px; | ||
} | ||
} | ||
|
||
|
@@ -844,16 +879,6 @@ input[type=number] { | |
} | ||
} | ||
|
||
.chipXs { | ||
border-radius: 15px; | ||
padding: 4px 6px; | ||
|
||
svg { | ||
width: 12px; | ||
height: 12px; | ||
} | ||
} | ||
|
||
.skChip { | ||
background: linear-gradient(180deg, rgb(52 52 52), rgb(31 31 31)); | ||
} | ||
|
@@ -885,6 +910,11 @@ input[type=number] { | |
color: #3cda94; | ||
} | ||
|
||
.chip_REWARDS { | ||
background: linear-gradient(180deg, #3d390f, #2a230a); | ||
color: #dac83c; | ||
} | ||
|
||
.chip_ACCEPTED { | ||
background: linear-gradient(180deg, #233d0f, #0a1b07); | ||
color: #3cda4e; | ||
|
@@ -1149,7 +1179,6 @@ input[type=number] { | |
} | ||
} | ||
|
||
|
||
.trustedBadge { | ||
color: #0095f6; | ||
} | ||
|
@@ -1158,12 +1187,6 @@ input[type=number] { | |
color: #ffb817; | ||
} | ||
|
||
.validatorCard { | ||
height: 100% !important; | ||
cursor: pointer; | ||
} | ||
|
||
|
||
.pOneLine { | ||
overflow: hidden; | ||
white-space: nowrap; | ||
|
@@ -1426,7 +1449,21 @@ input[type=number] { | |
display: none; | ||
} | ||
|
||
.opacity0 { | ||
opacity: 0; | ||
} | ||
|
||
.MuiTooltip-tooltip { | ||
font-size: 0.8rem !important; | ||
padding: 8px 12px !important; | ||
} | ||
|
||
.delegationFlowText { | ||
border-top: 2px #4a4a4a solid; | ||
margin: 0 10px; | ||
padding: 2px 5px 0 5px; | ||
} | ||
|
||
.delegationFlowIcon { | ||
margin-top: -20px; | ||
} |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. General note on useState setup in React. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consistency: .fullH -> .fullHeight