File tree 2 files changed +28
-22
lines changed
2 files changed +28
-22
lines changed Original file line number Diff line number Diff line change @@ -37,21 +37,18 @@ export default {
37
37
@import "~@/style/imports"
38
38
39
39
.app
40
- display grid
41
- grid-template-columns 1 fr
42
- grid-template-rows auto 1 fr auto
43
- grid-template-areas "connection" "content" "status"
40
+ display flex
41
+ flex-direction column
44
42
45
- .connection-status
46
- grid-area connection
43
+ .connection-status ,
44
+ .status-bar
45
+ flex auto 0 0
47
46
48
47
.content
49
- grid-area content
48
+ flex auto 1 1
49
+ height 100%
50
50
overflow hidden
51
51
52
- .status-bar
53
- grid-area status
54
-
55
52
.app-init-loading
56
53
z-index 100000
57
54
</style >
Original file line number Diff line number Diff line change 6
6
}"
7
7
>
8
8
<TopBar />
9
- <ProjectNav />
10
9
11
- <div v-if =" ready" class =" content" >
12
- <router-view />
10
+ <div class =" panes" >
11
+ <ProjectNav />
12
+
13
+ <div v-if =" ready" class =" content vue-ui-disable-scroll" >
14
+ <router-view />
15
+ </div >
13
16
</div >
14
17
15
18
<ProgressScreen progress-id =" __plugins__" />
@@ -41,22 +44,28 @@ export default {
41
44
@import "~@/style/imports"
42
45
43
46
.project-home
44
- display grid
45
- grid-template-columns 46px 1 fr
46
- grid-template-rows auto 1 fr
47
- grid-template-areas "topbar topbar" "side-left content"
47
+ display flex
48
+ flex-direction column
48
49
49
50
& .wide
50
- grid-template-columns 180px 1 fr
51
+ .project-nav
52
+ width 180px
53
+
54
+ .panes
55
+ flex auto 1 1
56
+ height 100%
57
+ display flex
51
58
52
- .top-bar
53
- grid-area topbar
59
+ .top-bar ,
60
+ .project-nav
61
+ flex auto 0 0
54
62
55
63
.project-nav
56
- grid-area side-left
64
+ width 46 px
57
65
58
66
.content
59
- grid-area content
67
+ flex auto 1 1
68
+ width 0
60
69
overflow-x hidden
61
70
overflow-y auto
62
71
You can’t perform that action at this time.
0 commit comments