15 lines
204 B
CSS
15 lines
204 B
CSS
.app-shell {
|
|
width: 100%;
|
|
height: 100dvh;
|
|
display: flex;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.app-shell > * {
|
|
min-width: 0;
|
|
min-height: 0;
|
|
flex: 1 1 auto;
|
|
}
|