2021-12-07 11:59:57 -08:00
|
|
|
/*
|
2024-09-06 10:22:13 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-12-07 11:59:57 -08:00
|
|
|
|
2025-02-18 17:59:58 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-06 10:22:13 +02:00
|
|
|
Please see LICENSE in the repository root for full details.
|
2021-12-07 11:59:57 -08:00
|
|
|
*/
|
|
|
|
|
|
2024-08-28 08:44:39 -04:00
|
|
|
.endCall > svg {
|
2023-08-28 16:45:17 -04:00
|
|
|
color: var(--stopgap-color-on-solid-accent);
|
2023-08-30 21:58:29 -04:00
|
|
|
}
|
2026-06-04 18:55:31 +02:00
|
|
|
|
|
|
|
|
.rotate > svg {
|
|
|
|
|
animation: spin 1s linear infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
|
from {
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
to {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|