diff --git a/src/components/AccountPage/EmptyStateAccount.js b/src/components/AccountPage/EmptyStateAccount.js index bf8b672d..79353be4 100644 --- a/src/components/AccountPage/EmptyStateAccount.js +++ b/src/components/AccountPage/EmptyStateAccount.js @@ -32,7 +32,7 @@ class EmptyStateAccount extends PureComponent { render() { const { t, account, openModal } = this.props return ( - + emptyState Dashboard logo { totalOperations={totalOperations} totalCurrencies={totalCurrencies} /> - + {totalAccounts > 0 ? ( diff --git a/src/components/ExchangePage/index.js b/src/components/ExchangePage/index.js index c398d7e6..6f40ae6c 100644 --- a/src/components/ExchangePage/index.js +++ b/src/components/ExchangePage/index.js @@ -57,7 +57,7 @@ class ExchangePage extends PureComponent { render() { const { t } = this.props return ( - + {t('app:exchange.title')} diff --git a/src/components/ManagerPage/Dashboard.js b/src/components/ManagerPage/Dashboard.js index 9c304bed..2f04caff 100644 --- a/src/components/ManagerPage/Dashboard.js +++ b/src/components/ManagerPage/Dashboard.js @@ -23,7 +23,7 @@ type Props = { } const Dashboard = ({ device, deviceInfo, t, handleHelpRequest }: Props) => ( - + diff --git a/src/components/ManagerPage/ManagerGenuineCheck.js b/src/components/ManagerPage/ManagerGenuineCheck.js index db0d9303..e83ab6cd 100644 --- a/src/components/ManagerPage/ManagerGenuineCheck.js +++ b/src/components/ManagerPage/ManagerGenuineCheck.js @@ -22,7 +22,7 @@ class ManagerGenuineCheck extends PureComponent { render() { const { t, onSuccess } = this.props return ( - + { const Container = styled(Box).attrs({ bg: 'white', p: 60, + selectable: true, })` position: fixed; top: 0; diff --git a/src/components/SettingsPage/index.js b/src/components/SettingsPage/index.js index dd8ed640..582add79 100644 --- a/src/components/SettingsPage/index.js +++ b/src/components/SettingsPage/index.js @@ -105,7 +105,7 @@ class SettingsPage extends PureComponent { const items = this._items.filter(item => item.key !== 'currencies' || accountsCount > 0) return ( - + {t('app:settings.title')} diff --git a/src/components/base/Modal/ModalBody.js b/src/components/base/Modal/ModalBody.js index f6056f2a..1b8ed293 100644 --- a/src/components/base/Modal/ModalBody.js +++ b/src/components/base/Modal/ModalBody.js @@ -77,6 +77,7 @@ const Body = styled(Box).attrs({ bg: p => p.theme.colors.white, relative: true, borderRadius: 1, + selectable: true, })` box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.2); ` diff --git a/src/styles/reset.js b/src/styles/reset.js index a413c8f3..58a7d85f 100644 --- a/src/styles/reset.js +++ b/src/styles/reset.js @@ -6,7 +6,8 @@ module.exports = `* { padding: 0; font: inherit; color: inherit; - user-select: none; + user-select: inherit; + cursor: inherit; min-width: 0; outline: none; @@ -21,6 +22,8 @@ body { font-size: 16px; font-weight: 300; line-height: 1.5; + user-select: none; + cursor: default; } #app {