31 lines
509 B
SCSS
31 lines
509 B
SCSS
.ember-application > .ember-view {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.page-container {
|
|
min-height: calc(100vh - #{$header-height});
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: $header-height;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.section {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
flex-direction: column;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
|
|
> .container {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
|
|
> .columns {
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
}
|