22 lines
518 B
SCSS
22 lines
518 B
SCSS
:host {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
// Share the screen space with thumbnails that may be above/below.
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
// Set the drawer relative to this host.
|
|
position: relative;
|
|
|
|
// Hide any content outside the main pane (e.g. side drawers) to ensure the
|
|
// user cannot scroll across to the drawers without opening them.
|
|
overflow: hidden;
|
|
}
|
|
|
|
::slotted:not([name]) {
|
|
// Expand the main body to fill available content not otherwise used by the
|
|
// surround.
|
|
flex: 1;
|
|
}
|