mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 22:57:02 +02:00
* update greys to use hds tokens * update blue vars * remove unused color vars * replace remaining colors, add hex codes in commnets * update kv rgp color * remove color_variables file and use hds tokens directly
20 lines
480 B
SCSS
20 lines
480 B
SCSS
@use '../utils/size_variables';
|
|
|
|
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
.radial-progress {
|
|
transform: rotate(-90deg) translateX(-20%);
|
|
}
|
|
.radial-progress circle {
|
|
stroke: rgba(var(--token-color-palette-neutral-300), 0.5);
|
|
transition: stroke-dashoffset size_variables.$speed ease-in;
|
|
will-change: stroke-dashoffset;
|
|
stroke-linecap: round;
|
|
}
|
|
.radial-progress circle.progress-fill {
|
|
stroke: var(--token-color-palette-green-200);
|
|
}
|