hookehuyr

style(AlbumList/Dashboard): 调整视频播放器高度和位置

统一修改视频播放器样式,高度从100vh改为50vh并下移20vh,提升页面布局效果
...@@ -85,7 +85,7 @@ ...@@ -85,7 +85,7 @@
85 :show-play-btn="true" 85 :show-play-btn="true"
86 :object-fit="'contain'" 86 :object-fit="'contain'"
87 :show-fullscreen-btn="true" 87 :show-fullscreen-btn="true"
88 - style="width: 100vw; height: 100vh; position: absolute; top: 0; left: 0;" 88 + style="width: 100vw; height: 50vh; position: absolute; top: 20vh; left: 0;"
89 @click.stop 89 @click.stop
90 @play="handleVideoPlay" 90 @play="handleVideoPlay"
91 @pause="handleVideoPause" 91 @pause="handleVideoPause"
......
...@@ -174,7 +174,7 @@ ...@@ -174,7 +174,7 @@
174 :show-play-btn="true" 174 :show-play-btn="true"
175 :object-fit="'contain'" 175 :object-fit="'contain'"
176 :show-fullscreen-btn="true" 176 :show-fullscreen-btn="true"
177 - style="width: 100vw; height: 100vh; position: absolute; top: 0; left: 0;" 177 + style="width: 100vw; height: 50vh; position: absolute; top: 20vh; left: 0;"
178 @click.stop 178 @click.stop
179 @play="handleVideoPlay" 179 @play="handleVideoPlay"
180 @pause="handleVideoPause" 180 @pause="handleVideoPause"
......