21 lines
323 B
CSS
21 lines
323 B
CSS
.shell {
|
|
display: flex;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
background: var(--md-sys-color-background);
|
|
}
|
|
|
|
.content {
|
|
flex: 1;
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: var(--md-sys-color-surface);
|
|
}
|
|
|
|
.content > * {
|
|
flex: 1;
|
|
min-height: 0;
|
|
}
|