-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixed swapPanel height #2180
fixed swapPanel height #2180
Conversation
@@ -29,8 +31,9 @@ const css = csjs` | |||
cursor: pointer; | |||
} | |||
.pluginsContainer { | |||
height: calc(100% - 35px); | |||
overflow: auto; | |||
height: 100%; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove height here. flex: 1 should be enough.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no it's not
overflow: auto; | ||
height: 100%; | ||
flex: 1; | ||
padding-bottom: 40px; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
because otherwise the top is shifted when it's not an iframe
src/app/components/side-panel.js
Outdated
@@ -5,7 +5,9 @@ const yo = require('yo-yo') | |||
const css = csjs` | |||
.panel { | |||
height: 100%; | |||
overflow-y: hidden; | |||
overflow-y: hidden; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this. There is no reason to hide it now.
53f8a57
to
8877ed5
Compare
8877ed5
to
f1c3a03
Compare
No description provided.