Browse Source
Merge pull request #442 from Budibase/Backend-and-workflow-responsive-layout-fix
Backend/Workflow layout update
pull/447/head
Martin McKeaveney
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
7 additions and
2 deletions
-
packages/builder/src/components/common/Switcher.svelte
-
packages/builder/src/pages/[application]/backend/_layout.svelte
-
packages/builder/src/pages/[application]/workflow/_layout.svelte
-
packages/standard-components/src/DataTable.svelte
|
|
|
@ -65,6 +65,7 @@ |
|
|
|
margin-right: 20px; |
|
|
|
background: none; |
|
|
|
outline: none; |
|
|
|
font-family: Inter; |
|
|
|
} |
|
|
|
|
|
|
|
.switcher > .selected { |
|
|
|
|
|
|
|
@ -22,7 +22,8 @@ |
|
|
|
<style> |
|
|
|
.root { |
|
|
|
height: 100%; |
|
|
|
display: flex; |
|
|
|
display: grid; |
|
|
|
grid-template-columns: 300px minmax(0, 1fr) 300px; |
|
|
|
background: var(--grey-1); |
|
|
|
line-height: 1; |
|
|
|
} |
|
|
|
|
|
|
|
@ -27,7 +27,8 @@ |
|
|
|
|
|
|
|
.root { |
|
|
|
height: 100%; |
|
|
|
display: flex; |
|
|
|
display: grid; |
|
|
|
grid-template-columns: 300px minmax(0, 1fr) 300px; |
|
|
|
background: var(--grey-1); |
|
|
|
line-height: 1; |
|
|
|
} |
|
|
|
|
|
|
|
@ -71,6 +71,8 @@ |
|
|
|
background: #fff; |
|
|
|
border-radius: 3px; |
|
|
|
border-collapse: collapse; |
|
|
|
overflow: scroll; /* Scrollbar are always visible */ |
|
|
|
overflow: auto; /* Scrollbar is displayed as it's needed */ |
|
|
|
} |
|
|
|
|
|
|
|
thead { |
|
|
|
|