|
|
@@ -88,6 +88,7 @@
|
|
|
<v-audio
|
|
|
v-if="audioUrl"
|
|
|
:vkey="audioUrl.id"
|
|
|
+ class="vaduio"
|
|
|
@audioEnded="handleEnded"
|
|
|
:autoplay="true"
|
|
|
:idleft="`_${$randomWord(true, 8, 8)}`"
|
|
|
@@ -491,15 +492,18 @@ export default {
|
|
|
text-align: center;
|
|
|
overflow: hidden;
|
|
|
white-space: nowrap;
|
|
|
+ vertical-align: middle;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ justify-content: center;
|
|
|
position: fixed;
|
|
|
- left: 50%;
|
|
|
+ left: calc(50% - 18px);
|
|
|
transform: translateX(-50%);
|
|
|
- bottom: 14px;
|
|
|
+ bottom: 44px;
|
|
|
z-index: 9999;
|
|
|
border-radius: 18px;
|
|
|
- background: rgba(0, 0, 0, 0.3);
|
|
|
+ background: rgba(0, 0, 0, 0.5);
|
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
|
- margin-top: 10px;
|
|
|
margin-left: 10px;
|
|
|
padding: 0 10px;
|
|
|
&.active {
|
|
|
@@ -509,6 +513,11 @@ export default {
|
|
|
}
|
|
|
.iconedit_soundview{
|
|
|
color: #0076F6;
|
|
|
+ margin-right: 10px;
|
|
|
+ }
|
|
|
+ .vaduio{
|
|
|
+ visibility: hidden;
|
|
|
+ width: 0;
|
|
|
}
|
|
|
}
|
|
|
|