diff --git a/resources/assets/js/App.vue b/resources/assets/js/App.vue index 8ba91d139..c751ad1ca 100755 --- a/resources/assets/js/App.vue +++ b/resources/assets/js/App.vue @@ -1,9 +1,16 @@ @@ -47,15 +54,27 @@ left: 0; right: 0; bottom: 0; -} -.child-view { - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - will-change: transform; - transition: all .3s cubic-bezier(.55, 0, .1, 1); + display: flex; + flex-direction: column; + + .child-status-bar { + flex-shrink: 0; + height: var(--status-bar-height); + background-color: var(--status-bar-color); + } + + .child-navigation-bar { + flex-shrink: 0; + height: var(--navigation-bar-height); + background-color: var(--navigation-bar-color); + } + + .child-view { + flex: 1; + height: 0; + will-change: transform; + transition: all .3s cubic-bezier(.55, 0, .1, 1); + } }