Fix toolbar overflow

This commit is contained in:
JannisX11 2020-07-16 13:15:34 +02:00
parent ccd6b36dc5
commit 7be2a8e064
3 changed files with 9 additions and 5 deletions

View File

@ -299,9 +299,14 @@
}
.toolbar.narrow, .toolbar_wrapper.narrow > .toolbar {
width: fit-content;
display: flex;
flex-flow: row-reverse;
height: 100%;
}
.toolbar_wrapper.narrow .toolbar .content {
float: left;
.toolbar.narrow, .toolbar_wrapper.narrow > .toolbar > .content {
height: 100%;
overflow-x: hidden;
overflow-y: auto;
}
.toolbar_wrapper > .toolbar.vertical {
width: 40px;

View File

@ -551,7 +551,7 @@
#start_screen section#start-files left {
width: 38%;
overflow-y: hidden;
padding: 20px 24px 10px 24px
padding: 20px 24px 0px 24px
}
#start-files right {
border-left: 1px solid var(--color-border);

View File

@ -72,8 +72,7 @@ const EditSession = {
key: 'edit_session',
host: EditSession.ip,
port: 9000,
path: '/sessions',
secure: true
path: '/sessions'
});
EditSession.peer.on('open', function() {