Not all Miniplayer PlayOptions clickable
Platform:
Linux Linux 6.0.19-3-MANJARO #1 SMP PREEMPT_DYNAMIC Wed Jan 18 07:57:11 UTC 2023 x86_64 GNU/Linux
Nuclear version:
0.6.17 (latest AUR nuclear-player-bin "95cfe0")
Description of the issue:
When enabling the miniplayer, the bottom lower part is not clickable as shown in the screenshot.

I've managed to make it work locally by setting an arbitrarily high z-index value (100) on the scss properties of the mini_play_options object in file packages/ui/lib/components/MiniPlayer/MiniPlayOptions/styles.scss. eg:
.mini_play_options {
...
z-index: 100;
...
}
Not sure if there's a proper convention or a project specific way to set the z-index.
Also, I might look into adding a test for it.
Feel free to just put that value directly in the css. No need to write tests in this case.
Fixed by #1592