Files
element-call/src/button/Button.module.css
T

21 lines
333 B
CSS
Raw Normal View History

2021-12-07 11:59:57 -08:00
/*
Copyright 2024 New Vector Ltd.
2021-12-07 11:59:57 -08:00
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
2021-12-07 11:59:57 -08:00
*/
.rotate > svg {
animation: spin 1s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}