fixed swapPanel height

pull/1/head
LianaHus 5 years ago
parent f5d42bb7ea
commit e3854af9d4
  1. 11
      src/app/components/side-panel.js

@ -6,7 +6,9 @@ const yo = require('yo-yo')
const css = csjs`
.panel {
height: 100%;
overflow-y: hidden;
overflow-y: hidden;
display: flex;
flex-direction: column;
}
.swapitTitle {
margin: 0;
@ -21,7 +23,7 @@ const css = csjs`
}
.swapitHeader {
height: 35px;
padding: 0 20px;
padding: 20px 20px;
display: flex;
align-items: center;
}
@ -30,8 +32,9 @@ const css = csjs`
cursor: pointer;
}
.pluginsContainer {
height: calc(100% - 35px);
overflow: auto;
height: 100%;
flex: 1;
padding-bottom: 40px;
}
.titleInfo {
padding-left: 10px;

Loading…
Cancel
Save