vault/ui/app/styles/components/auth-form.scss
2023-12-18 17:03:35 +00:00

43 lines
658 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: var(--token-color-foreground-faint);
}
}