Skip to content
New issue

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

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

Already on GitHub? # to your account

Fix some colors/measures #106

Merged
merged 1 commit into from
Feb 19, 2024
Merged
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
55 changes: 15 additions & 40 deletions src/img/ic_creditcoin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions src/library/ListItem/Wrappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export const Wrapper = styled.div`
}
&.modal,
&.canvas {
box-shadow: none;
border: none;
}

Expand Down Expand Up @@ -237,7 +236,9 @@ export const ValidatorStatusWrapper = styled.div<{

h5 {
color: ${(props) =>
props.$status === 'active' ? '#9CFFAA' : 'var(--text-color-secondary)'};
props.$status === 'active'
? 'var(--accent-color-primary)'
: 'var(--text-color-secondary)'};
opacity: ${(props) => (props.$status === 'active' ? 0.8 : 0.5)};
display: flex;
overflow: hidden;
Expand Down Expand Up @@ -269,7 +270,7 @@ export const SelectWrapper = styled.button`
justify-content: center;
}
svg {
color: var(--text-color-primary);
color: var(--highlight-input);
width: 1rem;
height: 1rem;
}
Expand Down
6 changes: 3 additions & 3 deletions src/library/Notifications/Wrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ export const Wrapper = styled.ul`

h3 {
color: var(--accent-color-primary);
font-family: InterSemiBold, sans-serif;
font-family: SF-Pro-M, InterSemiBold, sans-serif;
font-size: 1.2rem;
margin: 0.15rem 0 0.4rem;
flex: 1;
}
h4 {
font-family: InterSemiBold, sans-serif;
font-size: 1.05rem;
font-family: SF-Pro-M, InterSemiBold, sans-serif;
font-size: 0.94rem;
line-height: 1.45rem;
}
}
Expand Down
7 changes: 6 additions & 1 deletion src/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ html * {
--network-color-pending-light: rgba(156, 255, 170, 0.5);
--network-color-pending-dark: rgba(156, 255, 170, 0.5);
--network-color-pending: var(--network-color-pending-dark);
--status-success-color: #3dc77a;
--accent-color-primary: #3dc77a;
--accent-color-stroke: #3dc77a;
--accent-color-secondary: #5b6edd;
Expand All @@ -50,6 +51,10 @@ html * {
--button-hover-background: #3dc77a;

--custom-side-button-border: #222426;
--background-modal-card: #fff;
--background-input: #ebebeb;
--highlight-input: #777;
--text-color-invert: #fff;

.btn-primary {
color: #fff;
Expand Down Expand Up @@ -114,7 +119,7 @@ html {

.core-entry h5 {
opacity: 1 !important;
color: var(--accent-color-primary) !important;
color: var(--accent-color-primary);
}

// Patch
Expand Down
Loading