aboutsummaryrefslogtreecommitdiffstats
path: root/workflow-designer-ui/src/main/frontend/resources/scss/components/_layout.scss
diff options
context:
space:
mode:
Diffstat (limited to 'workflow-designer-ui/src/main/frontend/resources/scss/components/_layout.scss')
-rw-r--r--workflow-designer-ui/src/main/frontend/resources/scss/components/_layout.scss31
1 files changed, 16 insertions, 15 deletions
diff --git a/workflow-designer-ui/src/main/frontend/resources/scss/components/_layout.scss b/workflow-designer-ui/src/main/frontend/resources/scss/components/_layout.scss
index fc51e812..316412e4 100644
--- a/workflow-designer-ui/src/main/frontend/resources/scss/components/_layout.scss
+++ b/workflow-designer-ui/src/main/frontend/resources/scss/components/_layout.scss
@@ -1,20 +1,21 @@
.workflow-app {
- height: 100%;
- * {
- box-sizing: border-box;
- }
+ position: fixed;
+ top: 0;
+ left: 0;
+ right: 0;
+ bottom: 0;
- .version-wrapper {
- height: 100%;
- display: flex;
- flex-direction: column;
- }
+ * {
+ box-sizing: border-box;
+ }
- .custom-textarea {
- resize: none;
- }
-}
+ .custom-textarea {
+ resize: none;
+ }
-#root {
- height: 100%;
+ .version-wrapper {
+ display: grid;
+ grid-template-rows: 70px 1fr;
+ height: 100vh;
+ }
}