blob: 4bc131b1fe2e7395000d06542aa29f5785361fd4 [file] [log] [blame]
/**
* @license
* Copyright 2021 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import {css} from 'lit';
export const spinnerStyles = css`
.loadingSpin {
border: 2px solid var(--disabled-button-background-color);
border-top: 2px solid var(--primary-button-background-color);
border-radius: 50%;
width: 10px;
height: 10px;
animation: spin 2s linear infinite;
margin-right: var(--spacing-s);
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
`;