diff --git a/i18n/locales/en/common.json b/i18n/locales/en/common.json
index 83c08458cd..2b8a88dfcf 100644
--- a/i18n/locales/en/common.json
+++ b/i18n/locales/en/common.json
@@ -99,6 +99,7 @@
"Lisk Forum": "Lisk Forum",
"Lisk Hub": "Lisk Hub",
"Lisk ID": "Lisk ID",
+ "Lisk IDs": "Lisk IDs",
"Lisk Website": "Lisk Website",
"Loading...": "Loading...",
"Lock ID’s automatically after 10 minutes.": "Lock ID’s automatically after 10 minutes.",
@@ -235,7 +236,7 @@
"You have not forged any blocks yet": "You have not forged any blocks yet",
"You need to become a delegate to start forging. If you already registered to become a delegate, your registration hasn't been processed, yet.": "You need to become a delegate to start forging. If you already registered to become a delegate, your registration hasn't been processed, yet.",
"You've received {{value}} LSK.": "You've received {{value}} LSK.",
- "Your favorite Lisk IDs": "Your favorite Lisk IDs",
+ "Your favorite": "Your favorite",
"You’re votes are being processed and will be confirmed. It may take up to 10 minutes to be secured in the blockchain.": "You’re votes are being processed and will be confirmed. It may take up to 10 minutes to be secured in the blockchain.",
"Zero not allowed": "Zero not allowed",
"more": "more",
diff --git a/src/components/header/header.css b/src/components/header/header.css
index 892b778935..57b44fe0fd 100644
--- a/src/components/header/header.css
+++ b/src/components/header/header.css
@@ -16,7 +16,7 @@
}
.wrapper {
- margin: 5vh 0px; /* stylelint-disable-line */
+ margin: 0 0 30px;
text-align: right;
& .noPadding {
diff --git a/src/components/mainMenu/mainMenu.css b/src/components/mainMenu/mainMenu.css
index 6261ba36fb..e0e7c277b5 100644
--- a/src/components/mainMenu/mainMenu.css
+++ b/src/components/mainMenu/mainMenu.css
@@ -35,6 +35,7 @@
text-align: center;
box-shadow: none;
width: 100% !important;
+ max-width: 100% !important;
border: none !important;
padding: 20px 10px !important;
}
@@ -118,6 +119,7 @@
border-right: 1px solid var(--offcanvas-menu-border-color);
border-bottom: 1px solid var(--offcanvas-menu-border-color);
background: #fff;
+ max-width: 50%;
&:nth-child(2n) {
border-right: none !important;
diff --git a/src/components/mainMenu/mainMenu.js b/src/components/mainMenu/mainMenu.js
index 445ac2c2f5..423cf2b393 100644
--- a/src/components/mainMenu/mainMenu.js
+++ b/src/components/mainMenu/mainMenu.js
@@ -9,7 +9,7 @@ import { FontIcon } from '../fontIcon';
import Setting from '../setting';
const getIndex = (history, tabs) => {
- if (history.location.pathname.includes('explorer')) return tabs.length - 1;
+ if (history.location.pathname.includes('explorer')) return 2;
let index = -1;
tabs.map(t => new RegExp(`${t.route}(\\/?)`)).forEach((item, i) => {
@@ -87,15 +87,15 @@ class MainMenu extends React.Component {
image: menuLogos.sidechains,
}, {
*/
- label: t('Sidechains'),
- route: '/main/sidechains',
- id: 'sidechains',
- image: menuLogos.sidechains,
- }, {
label: t('Explorer'),
route: '/explorer/search',
id: 'explorer',
image: menuLogos.search,
+ }, {
+ label: t('Sidechains'),
+ route: '/main/sidechains',
+ id: 'sidechains',
+ image: menuLogos.sidechains,
},
];
@@ -124,7 +124,7 @@ class MainMenu extends React.Component {
className={styles.tab}
id={id}
disabled={
- (isCurrent(history, index, tabs) || !account.address) && index < tabs.length - 1
+ (isCurrent(history, index, tabs) || !account.address) && index !== 2
}
/>)}
@@ -152,7 +152,8 @@ class MainMenu extends React.Component {
key={index}
label={