1
0
Fork 0
mirror of synced 2024-07-04 22:11:23 +12:00

Fix backend page height and improve style consistency

This commit is contained in:
Andrew Kingston 2020-09-24 15:11:40 +01:00
parent 6b50b47ee0
commit 1d4a1b86ca

View file

@ -17,7 +17,7 @@
<style>
.root {
height: 100%;
height: calc(100vh - 60px);
display: grid;
grid-template-columns: 300px minmax(0, 1fr);
background: var(--grey-1);
@ -25,11 +25,11 @@
}
.content {
flex: 1 1 auto;
margin: 20px 40px;
margin: var(--spacing-xl) 40px;
}
.nav {
flex: 0 1 auto;
width: 300px;
height: 100%;
overflow-y: auto;
background: var(--white);
padding: var(--spacing-xl);
}
</style>