mirror of
https://github.com/hashicorp/vault.git
synced 2025-09-08 23:41:13 +02:00
* fix button padding * rename spacing variables using numerical values * fix toggle aligment * remove unused toggle classes * replace margin and padding with spacing vars * increase base font size * remove switch css, use toggle consistently * remaining margin/padding size vars to spacing pixels * add deprecated note, rever changes to size vars * decrease console size * remove function * adjust card size for small selectable cards * fix select to fit to content width * fix toolbar-scroller height * add changelog; * fix checkbox styling
45 lines
739 B
SCSS
45 lines
739 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
// This file defines the styles for the larger container elements like page-container, section and container.
|
|
|
|
.ember-application > .ember-view {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.page-container {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.section {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
flex-direction: column;
|
|
padding: 0 $spacing-20;
|
|
|
|
> .container {
|
|
display: flex;
|
|
flex-grow: 1;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
|
|
> .columns {
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
.container {
|
|
flex-grow: 1;
|
|
margin: 0 auto;
|
|
max-width: 1024px;
|
|
position: relative;
|
|
width: auto;
|
|
}
|