wip: desktop work

This commit is contained in:
Adam
2025-10-31 11:54:27 -05:00
parent 36b48a44ac
commit ffc889b99e
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;
}
}