Implement scrolling per stack

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2020-08-24 16:36:08 +02:00
parent 680e5c9fa3
commit bd9fe49ec4
2 changed files with 9 additions and 17 deletions

View File

@@ -267,9 +267,9 @@ export default {
@import './../../css/variables';
.stack {
width: $stack-width;
margin-left: $stack-spacing;
margin-right: $stack-spacing;
width: $stack-width + $stack-spacing*3;
margin-left: $stack-spacing/2;
margin-right: $stack-spacing/2;
}
.stack--header {
@@ -339,10 +339,6 @@ export default {
}
}
.stack .smooth-dnd-container.vertical {
margin-top: 3px;
}
/**
* Rules to handle scrolling behaviour are inherited from Board.vue
*/