Ensure VEO overlay is full height of screen

pull/12577/head
Alex P 2019-03-12 15:20:41 -07:00
parent d80b9e3ef9
commit 7af5e4a64e
2 changed files with 8 additions and 2 deletions

View File

@ -202,7 +202,7 @@ class DashboardPage extends Component<Props, State> {
onAddCell={this.handleAddCell}
/>
)}
<Overlay visible={isShowingVEO}>
<Overlay visible={isShowingVEO} className="veo-overlay">
<VEO onHide={this.handleHideVEO} onSave={this.handleSaveVEO} />
</Overlay>
</HoverTimeProvider>

View File

@ -25,6 +25,12 @@
display: flex;
align-items: stretch;
width: 100%;
flex: 0 0 calc(100% - #{$page-header-size});
flex: 0 0 calc(100% - #{$page-header-size});
padding-bottom: $ix-marg-c;
}
.veo-overlay {
.overlay--transition {
height: 100%;
}
}