@mindedge/vuetify-player 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindedge/vuetify-player",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "private": false,
5
5
  "description": "Accessible, localized, full featured media player with Vuetifyjs",
6
6
  "author": "Jacob Rogaishio",
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <v-container>
3
- <v-responsive :aspect-ratio="aspectRatio">
3
+ <v-responsive>
4
4
  <v-skeleton-loader
5
5
  v-if="!player.ready"
6
6
  class="mx-auto player-skeleton"
@@ -216,4 +216,7 @@ export default {
216
216
  height: 400px;
217
217
  aspect-ratio: 16/9;
218
218
  }
219
+ .player-video {
220
+ min-height: 200px;
221
+ }
219
222
  </style>