Skip to content

Commit

Permalink
#234 fixed Safari layout issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bugy committed Aug 24, 2019
1 parent 95149bf commit c62db22
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions web-src/js/components/AppLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
}
.app-content {
flex: 1 1 auto;
flex: 1 1 0;
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -166,6 +166,6 @@
}
.content-panel {
flex: 1 1 auto;
flex: 1 1 0;
}
</style>
8 changes: 7 additions & 1 deletion web-src/js/main-app/script-view.vue
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@
.script-view {
display: flex;
flex-direction: column;
flex: 1 1 auto;
flex: 1 1 0;
/* (firefox)
Expand All @@ -312,6 +312,12 @@
min-height: 0;
}
.script-view >>> .script-parameters-panel,
.actions-panel,
.files-download-panel {
flex: 0 0 content;
}
.script-description {
margin: 15px 17px 0;
}
Expand Down

0 comments on commit c62db22

Please sign in to comment.