Fixing viewer height

This commit is contained in:
Bruno Alves de Faria 2017-03-23 14:13:12 -03:00
parent 1475fe9ef2
commit d9e1c9e04e
4 changed files with 6 additions and 6 deletions

View File

@ -5,7 +5,7 @@
flex: 1
flex-flow: row nowrap
align-items: stretch
height: calc(100% - 78px);
height: 'calc(100% - %s)' % ($toolbarHeight + $topBarHeight)
width: 100%
.sidebarMenu

View File

@ -1,4 +1,4 @@
@import "{ohif:design}/app"
@require '{ohif:design}/app'
$lesionsSidebarMenuWidth = 450px
@ -7,7 +7,7 @@ $lesionsSidebarMenuWidth = 450px
flex: 1
flex-flow: row nowrap
align-items: stretch
height: 'calc(100% - %s)' % $toolbarHeight
height: 'calc(100% - %s)' % ($toolbarHeight + $topBarHeight)
width: 100%
.sidebarMenu

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,4 @@
@import "{ohif:design}/app"
@require '{ohif:design}/app'
$lesionsSidebarMenuWidth = 450px
@ -7,7 +7,7 @@ $lesionsSidebarMenuWidth = 450px
flex: 1
flex-flow: row nowrap
align-items: stretch
height: 'calc(100% - %s)' % $toolbarHeight;
height: 'calc(100% - %s)' % ($toolbarHeight + $topBarHeight)
width: 100%
.sidebarMenu