mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 08:06:50 +01:00
28 lines
389 B
SCSS
28 lines
389 B
SCSS
@use "../../variables.scss" as *;
|
|
|
|
@keyframes pulse {
|
|
0% {
|
|
background-color: $accent;
|
|
}
|
|
50% {
|
|
background-color: $bg-alt;
|
|
}
|
|
100% {
|
|
background-color: $accent;
|
|
}
|
|
}
|
|
|
|
.PlaybackDropdown {
|
|
.no-streams {
|
|
color: $muted;
|
|
font-size: 14px;
|
|
}
|
|
}
|
|
|
|
.Playback {
|
|
.recording {
|
|
background-color: $accent;
|
|
border-radius: $radius;
|
|
animation: pulse 1s 10;
|
|
}
|
|
}
|