fix analysis action-menu scroll on board resize

This commit is contained in:
Thibault Duplessis 2019-05-02 08:01:56 +07:00
parent a9931e2236
commit 224f08caee
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
.action-menu {
@extend %border-bottom-active;
flex: 1 1 auto;
flex: 1 1 0; // 0 size forces vertical scrollbar
display: flex;
flex-flow: column;
overflow: auto;

View file

@ -20,7 +20,7 @@
}
&__moves {
flex: 2 1 0px;
flex: 2 1 0; // 0 size forces vertical scrollbar
overflow-y: auto;
border-top: $border;
position: relative; /* required so line::before scrolls along the moves! */