Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/components/listening-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ export default function ListeningCard() {
<span
className={`size-2 rounded-full shrink-0 transition-colors duration-300 ${
live
? "listening-live-dot bg-[#1DB954] dark:bg-[#1DB954]"
: "opacity-35 bg-[#1DB954] dark:bg-[#1DB954]"
? "listening-live-dot bg-black dark:bg-white"
: "opacity-35 bg-black dark:bg-white"
}`}
style={
live
Expand Down
8 changes: 4 additions & 4 deletions app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -489,19 +489,19 @@ button.mag-chip:disabled {
@keyframes listening-live-pulse {
0%,
100% {
box-shadow: 0 0 0 0 rgb(29 185 84 / 0.45);
box-shadow: 0 0 0 0 rgb(0 0 0 / 0.35);
}
55% {
box-shadow: 0 0 0 10px rgb(29 185 84 / 0);
box-shadow: 0 0 0 10px rgb(0 0 0 / 0);
}
}
@keyframes listening-live-pulse-dark {
0%,
100% {
box-shadow: 0 0 0 0 rgb(29 185 84 / 0.4);
box-shadow: 0 0 0 0 rgb(255 255 255 / 0.4);
}
55% {
box-shadow: 0 0 0 10px rgb(29 185 84 / 0);
box-shadow: 0 0 0 10px rgb(255 255 255 / 0);
}
}
@keyframes listening-soft-breathe {
Expand Down