nixos/modules/desktop/astal/src/bar/sections/Playback.scss

29 lines
389 B
SCSS
Raw Normal View History

2025-02-03 07:55:17 +01:00
@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;
}
}