vault/ui/app/styles/core/layout.scss
Hamid Ghaf e55c18ed12
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

36 lines
587 B
SCSS

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
.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;
}
}
}