20 lines
280 B
SCSS
20 lines
280 B
SCSS
:host {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
max-height: 100vh;
|
|
width: 100%;
|
|
}
|
|
|
|
.content {
|
|
height: calc(100% - 56px);
|
|
max-height: calc(100vh - 56px);
|
|
overflow: auto;
|
|
}
|
|
|
|
app-bottom-navigation-bar {
|
|
margin-top: auto;
|
|
width: 100%;
|
|
z-index: 2;
|
|
}
|