Skip to content
Snippets Groups Projects
Commit aea1b282 authored by DCoded's avatar DCoded
Browse files

Changed "last transaction" text color

parent bfa1d788
No related branches found
No related tags found
1 merge request!10535Changed "last transaction" text color
...@@ -202,6 +202,10 @@ div > span.warning.notification::after { ...@@ -202,6 +202,10 @@ div > span.warning.notification::after {
color: yellowgreen color: yellowgreen
} }
.cash.note {
color: seagreen;
}
.white a { .white a {
color: white color: white
} }
......
...@@ -151,6 +151,7 @@ App.UI.storyCaption = function() { ...@@ -151,6 +151,7 @@ App.UI.storyCaption = function() {
if (V.lastCashTransaction) { if (V.lastCashTransaction) {
const transaction = document.createElement("div"); const transaction = document.createElement("div");
css.push('note');
App.UI.DOM.appendNewElement("span", transaction, `Last transaction`, css); App.UI.DOM.appendNewElement("span", transaction, `Last transaction`, css);
transaction.append(" | "); transaction.append(" | ");
if (V.lastCashTransaction > 0) { if (V.lastCashTransaction > 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment