mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 05:31:10 +02:00
36 lines
587 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|