fix audio player not showing up

This commit is contained in:
Azri Kahar
2022-07-22 17:09:48 +08:00
parent 3d03291c31
commit bec3d0e16e

View File

@@ -65,12 +65,20 @@ const authenticatedSrc = computed(() => addTokenToURL(props.src));
position: relative;
max-width: calc((var(--form-column-max-width) * 2) + var(--form-horizontal-gap));
img,
video {
width: auto;
height: auto;
}
audio {
width: 100%;
}
img,
video,
audio {
width: auto;
max-width: 100%;
height: auto;
max-height: v-bind(maxHeight);
object-fit: contain;
border-radius: var(--border-radius);