mirror of
https://github.com/hashicorp/vault.git
synced 2025-09-08 07:21:08 +02:00
21 lines
454 B
SCSS
21 lines
454 B
SCSS
@use '../utils/color_variables';
|
|
@use '../utils/size_variables';
|
|
|
|
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.shamir-progress {
|
|
.shamir-progress-progress {
|
|
display: inline-block;
|
|
margin-top: size_variables.$spacing-8;
|
|
margin-right: size_variables.$spacing-12;
|
|
}
|
|
.progress {
|
|
box-shadow: 0 0 0 4px color_variables.$ui-gray-050;
|
|
margin-top: size_variables.$spacing-8;
|
|
min-width: 90px;
|
|
}
|
|
}
|