+
{this.lastReconcileMessage()}
-
+
{
ledgerData.get('error') && ledgerData.get('error').get('caller') === 'getWalletProperties'
?
:
{this.nextReconcileMessage()}
}
-
{}}
+ onClick={enableSettings ? this.props.showOverlay.bind(this, 'advancedSettings') : () => {}}
/>
diff --git a/app/renderer/components/styles/animations.js b/app/renderer/components/styles/animations.js
index 54c421d03aa..b46c06aa250 100644
--- a/app/renderer/components/styles/animations.js
+++ b/app/renderer/components/styles/animations.js
@@ -31,8 +31,21 @@ const widthIncreaseKeyframes = (start, end) => ({
}
})
+const loaderAnimation = {
+ '0': {
+ transform: 'translate(0,0)'
+ },
+ '50%': {
+ transform: 'translate(0,15px)'
+ },
+ '100%': {
+ transform: 'translate(0,0)'
+ }
+}
+
module.exports = {
spinKeyframes,
opacityIncreaseKeyframes,
- widthIncreaseKeyframes
+ widthIncreaseKeyframes,
+ loaderAnimation
}