adding the 50px on the icon panel

pull/3094/head
Rob Stupay 6 years ago
parent 6d8e4f6456
commit 49a5ab1148
  1. 2
      src/app.js
  2. 7
      src/app/components/plugin-manager-component.js

@ -98,7 +98,7 @@ var css = csjs`
bottom : 0;
left : 0;
overflow : hidden;
width : 2%;
width : 50px;
}
.swappanel {
display : flex;

@ -49,6 +49,7 @@ class PluginManagerComponent {
this.views.root = yo`
<div id='pluginManager' class=${css.plugins_settings} >
<h2>Plugin Manager</h2>
<input placeholder="Search loaded plugins">
${this.views.activeMods}
${this.views.inactiveMods}
</div>
@ -140,9 +141,6 @@ const css = csjs`
margin-top: 9px;
}
.plugItIn.active {
display: block;
}
.plugin button {
${styles.rightPanel.settingsTab.button_LoadPlugin};
cursor: pointer;
@ -153,4 +151,7 @@ const css = csjs`
.inactivePlugins {
}
.plugins_settings input {
margin: 10px;
}
`

Loading…
Cancel
Save