diff --git a/src/components/Player/Bar.vue b/src/components/Player/Bar.vue
index 030f70a..3c81298 100644
--- a/src/components/Player/Bar.vue
+++ b/src/components/Player/Bar.vue
@@ -4,8 +4,8 @@
-
-
+
+
@@ -63,4 +63,14 @@ export default {
.volume {
width: 10%;
}
+
+ @media only screen and (max-width: 768px) {
+ .infos {
+ flex: 2;
+ }
+
+ .timer, .volume {
+ display: none;
+ }
+ }
diff --git a/src/components/Player/Controls.vue b/src/components/Player/Controls.vue
index 58c2c24..c620226 100644
--- a/src/components/Player/Controls.vue
+++ b/src/components/Player/Controls.vue
@@ -1,14 +1,14 @@
@@ -42,4 +42,10 @@ export default {
.pointer {
cursor: pointer;
}
+
+ @media only screen and (max-width: 768px) {
+ .stop {
+ display: none;
+ }
+ }
diff --git a/src/components/Player/Infos.vue b/src/components/Player/Infos.vue
index 8d883cd..cba8d9c 100644
--- a/src/components/Player/Infos.vue
+++ b/src/components/Player/Infos.vue
@@ -1,9 +1,9 @@
@@ -27,4 +27,10 @@ export default {
justify-content: center;
width: 40%;
}
+
+ @media only screen and (max-width: 768px) {
+ .podcast {
+ display: none;
+ }
+ }