set init settings for languages + fixes

This commit is contained in:
David Meincke
2022-03-27 17:21:16 +02:00
parent 7fce9b48c3
commit 1d90760c33
6 changed files with 37 additions and 47 deletions
+29
View File
@@ -0,0 +1,29 @@
.flex-horiz {
display: flex;
flex-direction: row;
height: 100%;
overflow: hidden;
}
.flex-vert {
display: flex;
flex-direction: column;
height: 100%;
}
.flex-horiz > *, .flex-vert > * {
flex-grow: 1;
flex-shrink: 1;
flex-basis: 1px;
position: relative;
}
.flex-horiz .flex-shrink, .flex-vert .flex-shrink {
flex-grow: 0;
flex-shrink: 1;
}
.flex-horiz .flex-grow, .flex-vert .flex-grow {
flex-grow: 1;
flex-shrink: 0;
}