mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-07-25 23:48:13 +01:00
40 lines
856 B
CSS
40 lines
856 B
CSS
/**
|
|
* Copyright 2026 Signal Messenger, LLC
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
@theme {
|
|
--default-animation-duration: 120ms;
|
|
--default-animation-timing-function: var(--ease-out-cubic);
|
|
|
|
--animate-*: initial; /* reset defaults */
|
|
--animate-spinner-v2-rotate: animate-spinner-v2-rotate 2s linear infinite;
|
|
--animate-spinner-v2-dash: animate-spinner-v2-dash 1.5s ease-in-out infinite;
|
|
}
|
|
|
|
@layer base {
|
|
@keyframes animate-spinner-v2-rotate {
|
|
0% {
|
|
transform: rotate(-180deg);
|
|
}
|
|
100% {
|
|
transform: rotate(180deg);
|
|
}
|
|
}
|
|
|
|
@keyframes animate-spinner-v2-dash {
|
|
0% {
|
|
stroke-dasharray: 2%, 300%;
|
|
stroke-dashoffset: 0;
|
|
}
|
|
50% {
|
|
stroke-dasharray: 180%, 300%;
|
|
stroke-dashoffset: -70%;
|
|
}
|
|
100% {
|
|
stroke-dasharray: 180%, 300%;
|
|
stroke-dashoffset: -248%;
|
|
}
|
|
}
|
|
}
|