wip: desktop work

This commit is contained in:
Adam 2025-10-31 11:54:27 -05:00
commit ffc889b99e
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75
9 changed files with 174 additions and 175 deletions

View file

@ -0,0 +1,13 @@
:root {
--animate-pulse: pulse-opacity 2s ease-in-out infinite;
}
@keyframes pulse-opacity {
0%,
100% {
opacity: 0;
}
50% {
opacity: 1;
}
}