diff --git a/app/app.global.scss b/app/app.global.scss index adcd2c02..e24fe2be 100644 --- a/app/app.global.scss +++ b/app/app.global.scss @@ -17,6 +17,7 @@ body { margin: 0; padding: 0; color: #333; + height: 100vh; box-sizing: border-box; -webkit-font-smoothing: antialiased; -webkit-tap-highlight-color: rgba(255,255,255,0); diff --git a/app/components/Contacts/Network.scss b/app/components/Contacts/Network.scss index d0d5cb0a..ffa83e63 100644 --- a/app/components/Contacts/Network.scss +++ b/app/components/Contacts/Network.scss @@ -69,11 +69,11 @@ &.active { display: block; position: absolute; - bottom: -80px; + bottom: -100px; z-index: 10; li { - margin: 5px 0; + margin: 10px 0; cursor: pointer; color: $white; @@ -102,7 +102,7 @@ } .fade { - opacity: 0.15; + opacity: 0.1; } .channel { diff --git a/app/components/LoadingBolt/LoadingBolt.scss b/app/components/LoadingBolt/LoadingBolt.scss index 11f2ceb6..87102286 100644 --- a/app/components/LoadingBolt/LoadingBolt.scss +++ b/app/components/LoadingBolt/LoadingBolt.scss @@ -7,7 +7,7 @@ left: 0; width: 100%; height: 100%; - background: $white; + background: $spaceblue; text-align: center; } diff --git a/test/components/Nav.spec.js b/test/components/Nav.spec.js deleted file mode 100644 index 4906adef..00000000 --- a/test/components/Nav.spec.js +++ /dev/null @@ -1,30 +0,0 @@ -import React from 'react' -import { shallow } from 'enzyme' -import { NavLink } from 'react-router-dom' -import Nav from 'components/Nav' - -const defaultProps = { - ticker: { - currency: 'usd', - crypto: 'btc' - }, - balance: {}, - setCurrency: () => {}, - currentTicker: {}, - openPayForm: () => {}, - openRequestForm: () => {} -} - -describe('default elements', () => { - const props = { ...defaultProps } - const el = shallow(