Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/page/demo/page-component-comms-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class PageDemoCommsApp extends LitElement {
box-sizing: border-box;
display: flex;
flex-direction: column;
min-height: calc(100vh - var(--d2l-page-header-height-measured) - 70px - 75px); /* sticky header is 70px and input box is 75px */
height: 100%;
justify-content: end;
}

Expand Down
9 changes: 9 additions & 0 deletions components/page/page-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ import { PagePanelMixin, pagePanelStyles } from './page-panel-mixin.js';
class PageMain extends PagePanelMixin(LitElement) {

static styles = [pagePanelStyles, css`
:host {
display: flex;
flex-direction: column;
height: 100%;
}
.panel {
box-sizing: border-box;
flex: 1 0 auto;
}
.panel-header {
top: var(--d2l-page-header-height, 0);
}
Expand Down
Loading