mirror of
https://github.com/vector-im/element-call.git
synced 2026-08-29 21:15:19 +00:00
They have been largely unused for a long time. This changes the colors of checkboxes and the 'end call' button to align with current designs as well.
21 lines
333 B
CSS
21 lines
333 B
CSS
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
.rotate > svg {
|
|
animation: spin 1s linear infinite;
|
|
}
|
|
|
|
@keyframes spin {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
to {
|
|
transform: rotate(360deg);
|
|
}
|
|
}
|