Skip to content

Commit

Permalink
fix: revert purple theme
Browse files Browse the repository at this point in the history
  • Loading branch information
druiz0992 committed Dec 7, 2021
1 parent b5ebb7b commit f825aa7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions wallet/src/semantic-ui/site/collections/table.variables
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@


@activeColor: @black;
@activeBackgroundColor: @activeBgColor;
@headerBackground: @headerBgColor;
@headerColor: @white;
/* @activeBackgroundColor: @activeBgColor;
@headerBackground: @headerBgColor;
@headerColor: @white; */
@rowBorder: 4px solid @internalBorderColor;
@headerBorder: 4px solid @white;

4 changes: 2 additions & 2 deletions wallet/src/semantic-ui/site/globals/site.variables
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************
User Global Variables
*******************************/
@primaryColor: #8248E5;
@pageBackground: #eff0f1;
/*@primaryColor: #8248E5;
@pageBackground: #eff0f1;*/
4 changes: 2 additions & 2 deletions wallet/src/semantic-ui/site/modules/modal.variables
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
@activeBgColor: #9e9ee6;
@headerBgColor: #6f56b1;
@backgroundImage: none;
@background: @backgroundColor @backgroundImage;
/*@background: @backgroundColor @backgroundImage;


@activeColor: @black;
@activeBackgroundColor: @activeBgColor;
@headerBackground: @headerBgColor;
@headerColor: @white;
@headerColor: @white;*/
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ function TransactionsModal({ token, login, transactions, onSubmitTx, onCancelTx
: []
}
onChange={(e, { value }) => setTokenId({ value, error: null })}
error={tokenId.error}
error={tokenId.error !== null}
/>
</Form.Field>
</Form.Group>
Expand Down Expand Up @@ -265,7 +265,7 @@ function TransactionsModal({ token, login, transactions, onSubmitTx, onCancelTx
</Modal.Content>
<Modal.Actions>
<div>
<Button floated="left" disabled={transactions.txType === ''} primary onClick={toggleAll}>
<Button floated="left" disabled={transactions.txType === ''} color="red" onClick={toggleAll}>
<Icon name="cancel" />
Cancel
</Button>
Expand Down

0 comments on commit f825aa7

Please sign in to comment.