18 lines
364 B
SCSS
18 lines
364 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
%progress-indeterminate {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
--icon-size: icon-700; /* 24px */
|
|
--icon-name: var(--icon-loading);
|
|
--icon-color: var(--token-color-foreground-faint);
|
|
}
|
|
%progress-indeterminate::before {
|
|
content: '';
|
|
}
|