Skip to content

Commit

Permalink
Update app background color
Browse files Browse the repository at this point in the history
  • Loading branch information
afterdusk committed Apr 25, 2021
1 parent 4831b96 commit d8b13dd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export const ISSUES_CONTRIBUTION_TEXT = {
};

// styling
export const BACKGROUND_COLOR = "#282c34";
export const BACKGROUND_COLOR = "#0e171c";
export const ACCENT_COLOR = "#039cfd";

// bignumber.js
Expand Down
4 changes: 3 additions & 1 deletion src/components/BitSegment.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ const BitField = styled.div`
flex-direction: row;
`;

const BitCheckbox = styled.input``;

type SegmentProps = {
name: string;
value: string;
Expand All @@ -47,7 +49,7 @@ const BitSegment: FC<SegmentProps> = (props: SegmentProps): ReactElement => (
<Field>{props.decimal}</Field>
<BitField>
{[...props.bits].map((e, i) => (
<input
<BitCheckbox
key={i}
type="checkbox"
checked={e}
Expand Down

0 comments on commit d8b13dd

Please sign in to comment.