1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

perf(UI): improved connection status indicator

This commit is contained in:
2021-04-21 16:41:42 +02:00
parent 16e17b39b6
commit 5ceddb8e00
9 changed files with 84 additions and 18 deletions

View File

@ -39,3 +39,17 @@
transform: scale(1);
}
}
@keyframes connecting {
0% {
background-color: transparent;
}
50% {
background-color: $warning-color;
}
100% {
background-color: transparent;
}
}