Browse Source

Webserver: adapt the player buttons to really small screens

transifex
Nicolas Pomepuy 3 years ago
parent
commit
cea31871b1
  1. 22
      buildsystem/network-sharing-server/src/components/MiniPlayer.vue

22
buildsystem/network-sharing-server/src/components/MiniPlayer.vue

@ -209,6 +209,28 @@ export default {
}
}
@media screen and (max-width: 450px) {
.player_controls .image-button {
width: 40px;
}
.player_controls .image-button.big {
width: 58px;
}
}
@media screen and (max-width: 330px) {
.player_controls .image-button {
width: 32px;
}
.player_controls .image-button.big {
width: 48px;
}
}
@media screen and (min-width: 768px) {
:root {
--playerHeight: 98px;

Loading…
Cancel
Save