aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app')
-rw-r--r--ui/app/components/pages/home/home.component.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/ui/app/components/pages/home/home.component.js b/ui/app/components/pages/home/home.component.js
index 0ab6f77f8..20ba44484 100644
--- a/ui/app/components/pages/home/home.component.js
+++ b/ui/app/components/pages/home/home.component.js
@@ -1,5 +1,6 @@
import React, { PureComponent } from 'react'
import PropTypes from 'prop-types'
+import Media from 'react-media'
import { Redirect } from 'react-router-dom'
import WalletView from '../../wallet-view'
import TxView from '../../tx-view'
@@ -64,7 +65,10 @@ export default class Home extends PureComponent {
return (
<div className="main-container">
<div className="account-and-transaction-details">
- <WalletView responsiveDisplayClassname="lap-visible" />
+ <Media
+ query="(min-width: 576px)"
+ render={() => <WalletView />}
+ />
<TxView />
</div>
</div>