open-vault/ui/app/styles/core/layout.scss
Matthew Irish 966c7dbf02
UI - New navbar and mount icons everywhere (#778)
New look for the navbar and new functionality on mobile. Also includes new look for the mounts list and headers in secret engines.
2018-10-21 14:19:34 -05:00

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;
}
}
}