+
{{ allMetadata ? 'less' : 'more' }}
{{ allMetadata ? 'expand_less' : 'expand_more' }}
@@ -203,7 +203,7 @@ export default {
},
computed: {
allMetadata() {
- return this.isPodcast || !this.hideMetadata
+ return this.isPodcast || this.windowWidth >= 500 || !this.hideMetadata
},
isIos() {
return this.$platform === 'ios'
@@ -753,4 +753,15 @@ export default {
width: 150vw !important;
max-width: 150vw !important;
}
+
+@media only screen and (max-width: 500px) {
+ #metadata {
+ grid-template-columns: auto 1fr;
+ }
+}
+@media only screen and (min-width: 500px) {
+ #metadata {
+ grid-template-columns: auto 1fr auto 1fr;
+ }
+}