fixed swapPanel height

pull/3094/head
LianaHus 6 years ago
parent a4fe35f60c
commit 3dd6c7b0b5
  1. 9
      src/app/components/side-panel.js

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

Loading…
Cancel
Save