diff --git a/src/app/panels/tab-proxy.js b/src/app/panels/tab-proxy.js index 14d6fb0a93..3dc7f8bd43 100644 --- a/src/app/panels/tab-proxy.js +++ b/src/app/panels/tab-proxy.js @@ -107,7 +107,7 @@ export class TabProxy { ` let tabsbar = yo` -
+
diff --git a/src/app/ui/landing-page/landing-page.js b/src/app/ui/landing-page/landing-page.js index 7e07facf82..0fe0f6161d 100644 --- a/src/app/ui/landing-page/landing-page.js +++ b/src/app/ui/landing-page/landing-page.js @@ -28,6 +28,7 @@ var css = csjs` height : 100%; padding : 20px; background-color: var(--bg-light); + margin-left : 75px; } .im:hover { } @@ -61,18 +62,10 @@ export class LandingPage extends ApiFactory { var actionsLearn = [ { label: 'Remix documentation', type: `link`, payload: `https://remix.readthedocs.io/en/latest/#` }, - { label: 'GitHub repository', type: `link`, payload: `https://github.com/ethereum/remix-ide` }, { label: 'Access local file system. remixd', type: `link`, payload: `https://remix.readthedocs.io/en/latest/tutorial_remixd_filesystem.html` }, - { label: 'npm module for remixd', type: `link`, payload: `https://www.npmjs.com/package/remixd` }, { label: 'Medium posts', type: `link`, payload: `https://medium.com/remix-ide` }, - { label: 'Tutorials', type: `link`, payload: `https://github.com/ethereum/remix-workshops` } - ] - - var actionsPlugins = [ - { label: 'Remix plugins & modules', type: `link`, payload: `https://github.com/ethereum/remix-plugin/blob/master/readme.md` }, - { label: 'Repository on GitHub', type: `link`, payload: `https://github.com/ethereum/remix-plugin` }, - { label: 'Examples', type: `link`, payload: `https://github.com/ethereum/remix-plugin/tree/master/examples` }, - { label: 'Build a plugin for Remix', type: `link`, payload: `https://medium.com/remix-ide/build-a-plugin-for-remix-90d43b209c5a` } + { label: 'Plugins & modules', type: `link`, payload: `https://github.com/ethereum/remix-plugin/blob/master/readme.md` }, + { label: 'GitHub repo', type: `link`, payload: `https://github.com/ethereum/remix-ide` }, ] var actionsHelp = [ @@ -83,7 +76,6 @@ export class LandingPage extends ApiFactory { // var sectionStart = new Section('Start', actionsStart) var sectionLearn = new Section('Learn', actionsLearn) - var sectionPlugins = new Section('Plugins', actionsPlugins) var sectionHelp = new Section('Help', actionsHelp) var sectionsWorkspaces = [] @@ -109,7 +101,6 @@ export class LandingPage extends ApiFactory { this.sections.push(sectionWorkspace) // this.sections.push(sectionStart) this.sections.push(sectionLearn) - this.sections.push(sectionPlugins) this.sections.push(sectionHelp) } diff --git a/src/app/ui/landing-page/section.js b/src/app/ui/landing-page/section.js index 72f51193f8..627f6df1e5 100644 --- a/src/app/ui/landing-page/section.js +++ b/src/app/ui/landing-page/section.js @@ -25,12 +25,12 @@ class Section { constructor (title, actions) { this.title = title this.actions = actions - this.cardStyle = (this.title === 'Workspaces') ? 'bg-success text-light' : 'bg-light text-dark border-dark' + this.cardStyle = (this.title === 'Workspaces') ? 'bg-success text-light' : 'bg-light text-dark' } render () { let sectionLook = yo` -
+
${this.title}

diff --git a/src/app/ui/styles/dropdown-styles.js b/src/app/ui/styles/dropdown-styles.js index e7d483a8ed..3e89c083aa 100644 --- a/src/app/ui/styles/dropdown-styles.js +++ b/src/app/ui/styles/dropdown-styles.js @@ -33,7 +33,7 @@ var css = csjs` display : flex; flex-direction : column; align-items : end; - top : 30px; + top : 32px; right : 0; width : 230px; border : 1px solid var(--dark);