Skip to content

Commit

Permalink
Change around how the positioning works, to MOSTLY get it working on …
Browse files Browse the repository at this point in the history
…stable. The card-drawer on left is off by a bit. Part of #25.
  • Loading branch information
jkomoros committed Dec 26, 2018
1 parent 69836ff commit ffe0f41
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/card-drawer.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,16 @@ class CardDrawer extends connect(store)(LitElement) {
${SharedStyles}
${ButtonSharedStyles}
<style>
:host {
max-height:100%;
}
.scrolling {
overflow:scroll;
max-height:100%;
flex-grow:1;
}
.container {
max-height:100%;
height:100%;
display:flex;
flex-direction:column;
}
Expand Down
1 change: 1 addition & 0 deletions src/components/card-view.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ class CardView extends connect(store)(PageViewElement) {
:host {
height: 100%;
width: 100%;
position:absolute;
}
.container {
display:flex;
Expand Down

0 comments on commit ffe0f41

Please sign in to comment.