mirror of https://github.com/status-im/consul.git
18 lines
365 B
SCSS
18 lines
365 B
SCSS
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
%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: '';
|
|
}
|