mirror of
https://github.com/JannisX11/blockbench.git
synced 2024-11-27 04:21:46 +08:00
Fix toolbar overflow
This commit is contained in:
parent
ccd6b36dc5
commit
7be2a8e064
@ -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;
|
||||
|
@ -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);
|
||||
|
@ -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() {
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user