mirror of
https://github.com/hashicorp/vault.git
synced 2025-11-11 05:41:10 +01: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
43 lines
628 B
SCSS
43 lines
628 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.auth-form {
|
|
@extend .box;
|
|
@extend .is-bottomless;
|
|
padding: 0;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.auth-form .vault-loader {
|
|
position: absolute;
|
|
top: -1px;
|
|
left: -1px;
|
|
right: -1px;
|
|
bottom: -1px;
|
|
background: rgba(255, 255, 255, 0.8);
|
|
z-index: 10;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.toolbar-namespace-picker {
|
|
padding: 0 $spacing-12;
|
|
|
|
.field {
|
|
width: 100%;
|
|
}
|
|
|
|
.field-label {
|
|
margin-right: $spacing-12;
|
|
align-self: center;
|
|
}
|
|
|
|
.is-label {
|
|
color: $grey;
|
|
}
|
|
}
|