working on flex styles

This commit is contained in:
sawka 2024-05-13 14:48:59 -07:00
parent a01b5a6bdd
commit 247b73c1e4
2 changed files with 8 additions and 2 deletions

View File

@ -8,10 +8,12 @@
justify-content: center;
width: 100%;
height: 100%;
overflow: hidden;
}
.block .block-header {
display: flex;
flex-shrink: 0;
height: 30px;
width: 100%;
align-items: center;

View File

@ -20,6 +20,7 @@ body {
background-color: var(--main-bg-color);
color: var(--main-color);
font: var(--base-font);
overflow: hidden;
}
#main,
@ -33,13 +34,14 @@ body {
.titlebar {
height: 35px;
border-bottom: 1px solid var(--border-color);
flex-shrink: 0;
}
.workspace {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
flex-grow: 1;
}
.tabs {
@ -47,6 +49,7 @@ body {
flex-direction: row;
height: 35px;
border-bottom: 1px solid var(--border-color);
flex-shrink: 0;
.tab {
display: flex;
@ -65,7 +68,8 @@ body {
.tabcontent {
display: flex;
flex-direction: row;
height: 100%;
flex-grow: 1;
min-height: 0;
width: 100%;
align-items: center;
justify-content: center;