1
0
Fork 0
mirror of synced 2024-09-30 17:18:14 +13:00

bugfix: left nav scrolling

This commit is contained in:
Michael Shanks 2020-06-01 22:11:55 +01:00
parent d4b2fb5736
commit 4c6b2a4dad

View file

@ -44,11 +44,13 @@
flex-direction: column;
padding: 20px 20px;
border-left: solid 1px var(--grey);
box-sizing: border-box;
}
.switcher {
display: flex;
margin: 0px 20px 20px 0px;
box-sizing: border-box;
}
.switcher > button {
@ -67,4 +69,9 @@
.switcher > .selected {
color: var(--ink);
}
.panel {
min-height: 0;
overflow-y: auto;
}
</style>