unhide lumbung radio player on desktop

This commit is contained in:
Aadil Ayub 2022-04-11 13:33:45 +05:00
parent a0796f0a3b
commit ed313dfb28
1 changed files with 6 additions and 1 deletions

View File

@ -979,7 +979,6 @@ footer a:hover {
.lumbung-radio-player {
display: flex;
display: none;
color: var(--sounds-dark);
border: 1px solid var(--sounds-dark);
background: var(--sounds-light);
@ -993,4 +992,10 @@ footer a:hover {
bottom: 2rem;
right: 2rem;
cursor: pointer;
}
@media (max-width: 480px) {
.lumbung-radio-player {
display: none;
}
}