1
0
Fork 0
mirror of synced 2024-10-01 01:28:51 +13:00

Merge pull request #442 from Budibase/Backend-and-workflow-responsive-layout-fix

Backend/Workflow layout update
This commit is contained in:
Martin McKeaveney 2020-07-14 16:09:27 +01:00 committed by GitHub
commit 1b24b82fb7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 2 deletions

View file

@ -65,6 +65,7 @@
margin-right: 20px;
background: none;
outline: none;
font-family: Inter;
}
.switcher > .selected {

View file

@ -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;
}

View file

@ -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;
}

View file

@ -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 {